Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need some help and I can't find the correct syntax. Here is what I have
MonthES = CONCATENATE(0, Month4 I want to assign the value of the formula above to the variable MonthES. I don't see why this shouldn't work. I would think it is only a syntax error, but I can't seem to find the answer Thanks for your assistance |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
James,
There's no Concatenate function in VBA. Nor is it supported using Application.WorksheetFunction. Use the Concatenate operator (&) instead: Monthes = 0 & Month4 -- Earl Kiosterud mvpearl omitthisword at verizon period net ------------------------------------------- "James Stephens" wrote in message ... I need some help and I can't find the correct syntax. Here is what I have. MonthES = CONCATENATE(0, Month4) I want to assign the value of the formula above to the variable MonthES. I don't see why this shouldn't work. I would think it is only a syntax error, but I can't seem to find the answer. Thanks for your assistance |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Name Assigned Formula Not Working | Excel Discussion (Misc queries) | |||
formula to color fill a cell if number over assigned value | Excel Worksheet Functions | |||
Macro Assigned to a Button | Excel Discussion (Misc queries) | |||
How do I know what macro is assigned to a button? | Excel Discussion (Misc queries) | |||
Variable with value before being assigned? | Excel Programming |