I'm trying to assign a variable to a cell value but I'm always getting zero for some reason.
Sheets(3).Activate
RowNo = 30
ColNo = 2
EU1 = Range(Cells(RowNo, ColNo).Address()).Value
MsgBox EU1
Check the image for cell address and value
The reason why I'm using Range(Cells(RowNo, ColNo))
is because I have a table that I need to loop into to check the date, if it equals toady (or less than today) the variable EU1 will be updated.