Problem: I'm writing a function and cannot get any cell range to populate with a value, however, I can in other workbooks. I'm also not receiving any type of error like "#VALUE" or others. It simply doesn't populate. All I can figure is the Workbook or maybe its options are causing the issue but I'm not sure why, or how to resolve it. I'm only experiencing this issue with trying to populate the Cell (i.e., Range) but I'm not having any other issues that I'm aware with the cell references... meaning I can retrieve a value from the cell.
What I've tried: I've tried all the basic types of populating the cell range:
The workbook was created with Excel 2016 as well as the other workbooks that this VBA code does work
Windows 10 Pro
Thanks!
What I've tried: I've tried all the basic types of populating the cell range:
- Range("A1").Value = "Test"
- Sheets(1).Range("A1").Value = "Test"
- Cells(1,1).Value = "Test"
- Worksheets(1).Range("A1").Value = "Test"
- ... as well with .Select
The workbook was created with Excel 2016 as well as the other workbooks that this VBA code does work
Windows 10 Pro
Thanks!