• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Excel Help

Eli

Super Moderator | Elite Member
Hi guys. First time poster in this forum. 😉 lol

Ok, here's the problem. I'm trying to call dates from multiple cells on Sheet2, and put them into a single cell on Sheet1.

It works, but Excel displays the two serial numbers, rather than the two dates. How do I fix this? Here's my code:

=IF(AND(RTV!AE29=0, RTV!AE30=0),"Not Filled Out",RTV!AE29 & CHAR(10) & RTV!AE30)

I don't think there's anything wrong with the code. Does it have to do with cell formatting? Is there a format for multiple dates? lol

Thanks!
 
Try:

=IF(AND(RTV!AE29=0, RTV!AE30=0),"Not Filled Out",TEXT(RTV!AE29,"mm/dd/yyyy") & CHAR(10) & TEXT(RTV!AE30,"mm/dd/yyyy"))
 
Back
Top