Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How to I assign a single value to a specif selected range in code some thing like this but this wont work
Worksheets("Sheetname").Range("19R:21C").value = " Thankyou in advance for you help. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
try Worksheets("Sheetname").Range("U19").value = "" or Worksheets("Sheetname").cells(19,21).value = "" -- Regards Frank Kabel Frankfurt, Germany "BEn" schrieb im Newsbeitrag ... How to I assign a single value to a specif selected range in code some thing like this but this wont work? Worksheets("Sheetname").Range("19R:21C").value = "" Thankyou in advance for you help. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One way:
Sheets("Sheetname").Cells(19, 21).ClearContents In article , BEn wrote: How to I assign a single value to a specif selected range in code some thing like this but this wont work? Worksheets("Sheetname").Range("19R:21C").value = "" Thankyou in advance for you help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I enter formula sum(range+range)*0.15 sumif(range=3) | Excel Discussion (Misc queries) | |||
Excel Addin:Setting the range to the Excel.Range object range prop | Excel Worksheet Functions | |||
Selecting range in list of range names depending on a cell informa | Excel Discussion (Misc queries) | |||
formula to sort a range so that it matches the exact rows of a column that is outside that range? | Excel Discussion (Misc queries) | |||
how to? set my range= my UDF argument (range vs. value in range) [advanced?] | Excel Programming |