I know this has to be simple. I want to return the date in a cell and if it's blank it returns nothing. The date is moving into thr cell for code so it is blank. Right now I get 1/0/0. Thanks
Hi Rocky,
To be honest what you just said doesn't really make much sense, or at least we have not got enough information...
If cell (let's say A1) is not blank then another cell (let's say B1) is supposed to be returning a date. If A1 is blank however, B1 should not return a date. Is that generally the idea (give or take the actual cells being the right ones I mean)?
If I have the right idea then the formula in B1 would be something like =IF(A1<>"",TODAY(),"")
Or are you trying to do this with VBA?