Support Board
Date/Time: Sat, 01 Feb 2025 05:02:53 +0000
Post From: Help with formula Spreadsheet
[2019-06-20 13:09:00] |
Sawtooth - Posts: 4164 |
Try this: =IF(AND(ID4.SG1@3>500,ID4.SG1@3<1000),1,0) However, when the result is boolean (true/false), you don't need to use the IF function: =AND(ID4.SG1@3>500,ID4.SG1@3<1000) |