Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello:
If I do this.. ActiveWorkbook.Worksheets("Sale").Range("E11").For mula = "=R1C1" I get.. =$A$1 in my E11 Is there a way to get rid the dollar signs? What I want is =A1. Thanks! Adrian T |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Adrian T wrote...
If I do this.. ActiveWorkbook.Worksheets("Sale").Range("E11").Fo rmula = "=R1C1" I get.. =$A$1 in my E11 Is there a way to get rid the dollar signs? What I want is =A1. It's SUCH a bother to read online help isn't it? There's a topic there titled 'About R1C1 references' that explains the syntax. However, why aren't you simply using ActiveWorkbook.Worksheets("Sale").Range("E11").For mula = "=A1" ? Indeed, using the .Formula property to enter formulas using R1C1 references should generate Excel formula syntax errors. So, are you actually using the .FormulaR1C1 property? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Change your Formula to: ActiveWorkbook.Worksheets("Sale").Range("E11").For mula = "=A1" This will givew you =A1 in E11 Charles "Adrian T" wrote in message ... Hello: If I do this.. ActiveWorkbook.Worksheets("Sale").Range("E11").For mula = "=R1C1" I get.. =$A$1 in my E11 Is there a way to get rid the dollar signs? What I want is =A1. Thanks! Adrian T |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
help on Converting R1C1 to A1 and A1 to R1C1..tia sa2 | Excel Discussion (Misc queries) | |||
help on Converting R1C1 to A1 and A1 to R1C1..tia sa2 | Excel Worksheet Functions | |||
how can i change dollar sign to rupee sign in sales invoice | Excel Discussion (Misc queries) | |||
can I change the $ sign to a £ sign in an MS template? | Excel Worksheet Functions | |||
XL invoice replace the dollar sign with euro sign | New Users to Excel |