Can't use formula in excel cell

i am getting error in applying formula by using write cell activity.

“=IFERROR(IF((D6/C7)>1,1,(D6/C7)),”“)”.
even used that in double quotes. throwing error.

suggesting me this too : If your data is a formula, make sure you use comma as parameters separator;

“=IFERROR(IF((D6/C7)>1,1,(D6/C7)),”“”“)”

Try using this.

Hello @MICHKEL_ANGLO_J

The correct formula for your Write Cell activity is

“=IFERROR(IF((D6/C7)>1,1,D6/C7),”“”“)”

Thanks & Cheers!!!