check your other post for another suggestion.
> Sorry about the cross post but I'm getting desperate...
>
[quoted text clipped - 19 lines]
>
> Any and all help is greatly appreciated.
got it! Thank you. I'm cross posting the solutions that worked for me in
hope that others can benifit too. It amounts to either using a marco
Sub test()
Row = 2
a = 2
Do
For i = 3 To 5
Cells(Row, 2).Value = "R" & a & "C" & i
Row = Row + 1
Next i
a = a + 1
Loop Until Row > 735
End Sub
or one of two formulas...
="R"&INT(ROW(A3)/3)+1&"C"&MOD(ROW(A2)+1,3)+3
or without the cell references...
="R"&INT((ROW()+4)/3)&"C"&MOD(ROW()+1,3)+3
I ended up using the macro so I did not have to convert the formulas into
their values.
Thank you to everyone for their input.
> check your other post for another suggestion.
>
[quoted text clipped - 21 lines]
> >
> > Any and all help is greatly appreciated.