Oct 21 2023 11:58 AM
I have the Family Office 365 version, so not the Primary holder yet expect Excel to work.
I create a number in cell e51; ans 5 I create a number in f51; ans 10. Both from either Find or Len functions which both gave the correct result. I checked to ensure the results were both numbers with ISText function. Then just put a simple formula in = f51 - e51 and got 0....Zero!!??? what the heck is going on??? When I put the formula =IF(E51=0,0,RIGHT(B51,(F51-E51))) I got 0, even though e51 is 5 so what the heck is going on with Excel....unreliable now?
Oct 21 2023 12:00 PM
Could you attach a small sample workbook demonstrating the problem (without sensitive data), or if that is not possible, make it available through OneDrive, Google Drive, Dropbox or similar?
Oct 21 2023 12:13 PM
Oct 21 2023 12:15 PM
That could be available in the editor when you reply on the post
If not when share on OneDrive, Google Drive, whatever, make available for everyone and share the link.
Oct 21 2023 12:34 PM
Oct 21 2023 12:40 PM
Thanks! Your formula in G52 refer to cells in row 51, but the cells you want are in row 52:
Since E51 and F51 are blank, your formula =IF(E51=0,0,RIGHT(B51,(F51-E51))) returns 0.
If you refer to E52 and F52, you get the desired result:
Oct 21 2023 01:10 PM