ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   about & operator (https://www.excelbanter.com/excel-discussion-misc-queries/213475-about-operator.html)

[email protected]

about & operator
 
i have a question about & operator.i was using that operator in a
vicious circle ( for x ...next x ).
but that operator not runing with my vicious..

example :
sub report()

cash1= 25/05/2008
for i = 1 to 10
'PROBLEM THIS BELOW!!!
"cash"& i = cash1 + i
next i

end sub

i want to that result
cash2 = 26/05/2008
cash3 = 27/05/2008

how can i do it?

Jarek Kujawa[_2_]

about & operator
 
will this help?

Sub report()


cash1 = #5/25/2008#
For i = 1 To 10
ActiveCell.Offset(i, 0).Value = "cash" & i & " = " & DateSerial
(Year(cash1), Month(cash1), Day(cash1) + i)
Next i


End Sub




On 12 Gru, 17:27, " wrote:
i have a question about & operator.i was using that operator in a
vicious circle ( for x ...next x ).
but that operator *not runing with my vicious..

example :
sub report()

cash1= 25/05/2008
for i = 1 to 10
* * 'PROBLEM THIS BELOW!!!
* * "cash"& i = cash1 + i
next i

end sub

i want to that result
cash2 = 26/05/2008
cash3 = 27/05/2008

how can i do it?



Bob Phillips[_3_]

about & operator
 
Dim cash As Variant

Redim cash ( 1 To 10)
For i = 1 To 10

cash(i) = DateSerial(2008,5,25) + i
Next i

--
__________________________________
HTH

Bob

wrote in message
...
i have a question about & operator.i was using that operator in a
vicious circle ( for x ...next x ).
but that operator not runing with my vicious..

example :
sub report()

cash1= 25/05/2008
for i = 1 to 10
'PROBLEM THIS BELOW!!!
"cash"& i = cash1 + i
next i

end sub

i want to that result
cash2 = 26/05/2008
cash3 = 27/05/2008

how can i do it?





All times are GMT +1. The time now is 11:00 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com