Date
Votes
2 comments
-
Andrew Rowland We have a report that has an IF statement currently hard coded with a distance:
=NP("Formula","=IF([@[Distance]]<8, ""true"", ""false"")")
Ideally we would like to offer the ability to enter this as a user Report Option when the report is run. Is this possible?
-
Marc Hi Andrew,
Yes, this should be possible.
I'm assuming you don't have any Options set up at the moment, so edit these references as you need.
- Insert a new line at row 3
- In the new A3 type the word Option
- In cell B1 type Title
- In cell C1 type Value
- In cell B3 type your search word/term: Bespoke distance to search against
- Change your NP formula to:
=NP("Formula","=IF([@[Distance]]<$B$3, ""true"", ""false"")") - Make sure your NL("Table") includes the NP formula cell
- Press Run
You will now receive a pop-up asking you to enter a particular distance length.
Please sign in to leave a comment.