Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
My aim is to have a form and on that page be able to
click a button, have the form enter the data on the datasheet. If one text box is empty it will not write a blank over an existing value. I have been using the code below and it only allows me to write over the existing cells value. Set Rng = shData.Range("I" & Application.Match(CLng (sh.Range("D6")), shData.Range("B:B"), 0)) Rng.Value = sh.Range("D8").Text I have tried to adapt it and I get an error. If sh.Range("D8") Is Null Then End Else Set Rng = shData.Range("E" & Application.Match(CLng (sh.Range("D6")), shData.Range("B:B"), 0)) Rng.Value = sh.Range("D8").Text End If What do I need to add? Also where do I start a message box sayaing "Cell "A1" already has a value of 3.22, would you like to replace with 2.66?. Click Yes to Replace, No to skip. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
why not use
if sh.range("D8").value = "" then instead of sh.range("d8") is null then where exactly do you hit the error? "Rob Hargreaves" wrote: My aim is to have a form and on that page be able to click a button, have the form enter the data on the datasheet. If one text box is empty it will not write a blank over an existing value. I have been using the code below and it only allows me to write over the existing cells value. Set Rng = shData.Range("I" & Application.Match(CLng (sh.Range("D6")), shData.Range("B:B"), 0)) Rng.Value = sh.Range("D8").Text I have tried to adapt it and I get an error. If sh.Range("D8") Is Null Then End Else Set Rng = shData.Range("E" & Application.Match(CLng (sh.Range("D6")), shData.Range("B:B"), 0)) Rng.Value = sh.Range("D8").Text End If What do I need to add? Also where do I start a message box sayaing "Cell "A1" already has a value of 3.22, would you like to replace with 2.66?. Click Yes to Replace, No to skip. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
adapt macro | Excel Worksheet Functions | |||
How can I adapt the included filter example to search for more th. | Excel Discussion (Misc queries) | |||
Trying to adapt progress meter | Excel Programming | |||
Required sum, need values to adapt with changes | Excel Programming | |||
Adapt an array routine or a better way? | Excel Programming |