わかりました、あなたが言ったようなコードのようなものです。私は以前にそれをやったことがあります。これは私があなたに答えることができます。しかし、私はあなたの努力をまったく見ていないからです。だから私はあなたに私のコードを与えて説明するだけです、そしてあなたはそれをあなたの質問コードに変更する必要があります. Ok?
c = TB1.Value >> (My textbox for user to fill in their name that same with the sheet row value)
Cells.Find(What:=c, After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=False).Activate
myRow = ActiveCell.Row
rtb = myRow >> My Row XX Value just like you said want to know at what row hold that value.
e = coltb.Text >> (My textbox for user to fill in their date value that will be find in column)
Cells.Find(What:=e, After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, _
MatchCase:=True, SearchFormat:=True).Activate
myColumn = ActiveCell.Column
ctb = myColumn >>> (My Column XX value just like for know what is the column that hold the value)
Worksheets("Sheet1").Cells(rtb, ctb) = Val(Score) > Your RTB(Row value) + CTB(Column Value) then the score of your test.
こんな感じかもしれませんよね?このコードは VBA で使用されているため、VBA を使用してタグを作成します
希望は役に立ちます