Support Board
Date/Time: Sun, 06 Jul 2025 12:17:58 +0000
Post From: Help with formula Spreadsheet
[2019-06-20 13:09:00] |
Sawtooth - Posts: 4235 |
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) |