Ok two major formulas didnt translate properly from google sheets to excel and it seemed to work after fixing both of them.
First, check the “Data” Sheet, column G
In Google Sheets, the formula is:
=IF(ISBLANK(F2),IF(EQ(F2,D2),E2,D2))
In Excel, I had to rewrite it slightly to:
=IF(ISBLANK(F2),IF(F2=D2),E2,D2))
And of course you have to extend the formula to the whole column.
I have the German Excel version and it failed to translate the formula in the (hidden) column B.
Google Sheets formula:
=IF(ISBlANK($A2),IFS($A2=“OOB”,1,$A2=“BM4”,2,$A2=“PtV”,3))
Wrong translated Excel formula:
=WENN(ISTLEER($A2),IFS($A2=“OOB”,1,$A2=“BM4”,2,$A2=“PtV”,3))
As you can see, it translated the “IF” and the “ISBLANK”, but not the “IFS”.
I suspect you don’t have that problem.
You might have other issues though. Just check the cells and see if they are doing what you’d expect them to.