A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
MAX never returns "", it always returns a number. Try
=IF(COUNT(B2:N2)=0, "", MAX(B2:N2))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi All
I have this formula =MAX(B2,C2,D2,E2,F2,G2,H2,I2,J2,K2,L2,M2,N2,) which returns the latest date but if it is blank is returning 1/0/1900 (which is not a welcome result)
So I tried this (which usually does the trick) =IF(MAX(B2,C2,D2,E2,F2,G2,H2,I2,J2,K2,L2,M2,N2)="","",MAX(B2,C2,D2,E2,F2,G2,H2,I2,J2,K2,L2,M2,N2)) but still doesn't work
what could be a solution?
Thank you
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
MAX never returns "", it always returns a number. Try
=IF(COUNT(B2:N2)=0, "", MAX(B2:N2))
Thank you HansV. That works perfectly