A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Hello @Chaturvedi, Santosh
If you're using Excel M365, please paste this formular to Y4 =IF(OR(ISBLANK(W4), ISBLANK(X4)), "", IFS(X4 < -W4, "Field I", AND(X4 >= -W4, X4 <= W4), "Field II", AND(X4 > W4, X4 <= 3*W4), "Field III", X4 > 3*W4, "Field IV"))The IFS function is the cleanest way to map the specific criteria boxes from the screenshot.
If you're using older versions of Excel, a standard nested IF statement evaluates the conditions in sequential order: =IF(OR(ISBLANK(W4), ISBLANK(X4)), "", IF(X4 < -W4, "Field I", IF(X4 <= W4, "Field II", IF(X4 <= 3*W4, "Field III", "Field IV"))))
Hope this helps.
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.