I use this formula in Column G
=IF(ISBLANK(A3),"User missing",IFS(C3=E3,0,E3="","Empty Data",C3<>E3,"Wrong Data"))
Applying this formula for 30k data make my sheet slow. Need to convert to script.
As If and IFS is used in same formula, I am facing difficult to convert this to Script.
Condition:
If Column A is Empty then "User Missing"
If A have data,
then condition is
If E is empty then "Empty Data"
If C and E is not equal then "Wrong Data"
If C and E is equal then 0