Not sure quite what you're looking for but if makes sense here.
=IF($A$1 > 50, 0, 1)
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
hi everyone, I need your help.
I would like to convert all values from 1 to 50 in a column into 1 an other column and all tue values greater than 50 into 0, can I with a simple formula or whatever?
Not sure quite what you're looking for but if makes sense here.
=IF($A$1 > 50, 0, 1)
Hi @ANTONIO MIELE ,
Try this formula:
=IF(A1>50,0,IF(AND(A1>0,A1<=50),1,""))
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.