Hi:
I am trying to change this code to a formula but I am not having any luck. This is the code that I have that names a file but I need the name to go in a specific cell (titled FileName) as well.
So, I tried this but I can't get it to work for me:
=UPPER(TEXT(Min & " - " & LocationNo & " - " & LocationName & " - " & Format(TransactionDate, "dd-mmm-yyyy") & " " & Format(TotalRevenue,"$###,###,##0.00")))
Min
LocationNo
LocationName
TransactionDate
TotalRevenue
These are all named cells within the workbook.
Can someone help me out please?
THANKS,
Mark
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o> </o>
I am trying to change this code to a formula but I am not having any luck. This is the code that I have that names a file but I need the name to go in a specific cell (titled FileName) as well.
Code:
ActiveSheet.Range("Min") & " - " & ActiveSheet.Range("LocationNo") & " - " & ActiveSheet.Range("LocationName") & " - " & Format(ActiveSheet.Range("TransactionDate"), "dd-mmm-yyyy") & " " & Format(ActiveSheet.Range("TotalRevenue"), "$###,###,##0.00")
So, I tried this but I can't get it to work for me:
=UPPER(TEXT(Min & " - " & LocationNo & " - " & LocationName & " - " & Format(TransactionDate, "dd-mmm-yyyy") & " " & Format(TotalRevenue,"$###,###,##0.00")))
Min
LocationNo
LocationName
TransactionDate
TotalRevenue
These are all named cells within the workbook.
Can someone help me out please?
THANKS,
Mark
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o> </o>