Cells populated with automation show no value via SSMS

dougkale

New Member
Joined
Sep 22, 2017
Messages
25
I am using VBA to enforce the population of two cells in my worksheet. I check to see if there are values in the on_save event. If there is not a value I prompt for it with the following code:

If Len(Range("M2").Value) = 0 Then
myValue = InputBox("Please enter your valid Email address")
Range("M2").Value = myValue
End If

If Len(Range("N2").Value) = 0 Then
myValue = InputBox("Enter Y/N?")
Range("N2").Value = myValue
End If

This seems to work for populating the cells. The values appear in the cells even when the file is closed and re-opened.

HOWEVER if I try to import the data via SQL. These fields appear blank.

But if I open the file, they have values.

Has anyone ever experienced this before?
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.

Forum statistics

Threads
1,216,030
Messages
6,128,405
Members
449,448
Latest member
Andrew Slatter

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top