I'm trying to set up a formula where the result is blank until other conditions are met. For example, if(A1>B1,"W","L")if(A1="","") Thank you.

For example, if(A1>B1,“W”,“L”)if(A1="","") Thank you.

=IFS()

could be helpful for you.

https://help.libreoffice.org/7.0/en-US/text/scalc/01/func_ifs.html?DbPAR=CALC#bm_id901556242230198

What advantage/s does IFS have over nested IF? Say: =IF(A1="","";IF(A1>B1,"W","L")). Thanks.

Hello,

try: =IFS(ISBLANK(A1);"";A1>B1;"W";A1<=B1;"L";1;"")