Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Can anybody suggest me how to copy excel formulas from a range and paste it to another excel programatically using c#. Any suggestionwill be appreciative.
|
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Syam has brought this to us :
Can anybody suggest me how to copy excel formulas from a range and paste it to another excel programatically using c#. Any suggestionwill be appreciative. Try... { oXLApp.Range("TargetAddressGoesHere") = oXLApp.Range("SourceAddressGoesHere"); } -- Garry Free usenet access at http://www.eternal-september.org ClassicVB Users Regroup! comp.lang.basic.visual.misc |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Corrected to reflect copying formulas instead of values...
Try... { oXLApp.Range("TargetAddressGoesHere").Formula = oXLApp.Range("SourceAddressGoesHere").Formula; } -- Garry Free usenet access at http://www.eternal-september.org ClassicVB Users Regroup! comp.lang.basic.visual.misc |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Oops.., syntax error correction...
Corrected to reflect copying formulas instead of values... Try... { oXLApp.Range("TargetAddressGoesHere").Formula == oXLApp.Range("SourceAddressGoesHere").Formula; } -- Garry Free usenet access at http://www.eternal-september.org ClassicVB Users Regroup! comp.lang.basic.visual.misc microsoft.public.vb.general.discussion |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to copy formulas using $ in Excel | Excel Worksheet Functions | |||
copy formulas without scrolling, excel 2003. | New Users to Excel | |||
hOW DO i COPY FORMULAS FROM ONE SPREADSHEET TO ANOTHER IN EXCEL | Excel Discussion (Misc queries) | |||
how can i get formulas in excel to copy and paste? | Excel Worksheet Functions | |||
How do I save a copy of an excel file without the formulas? | Excel Worksheet Functions |