Hi - I have attached an example of a process to create limits profiles out of of values. Essentially the formula tool uses an if statement to "bin" or "bucket" the limits into several categories/ranges. However, if a user wants to update this they will need to manually do so in the formula.
I'm familiar with creating applications and have made a few, but I'm wondering if there's a way to create an application that allows a user to input an excel file that has a list of the ranges they would like, and to have that update the formula tool accordingly.
Any help would be greatly appreciated.
Thank you!
Solved! Go to Solution.
Hi @aweldon1 - Please find attached app that will read ranges from a file that then are used to apply conditions. I'm not a big fan of long "if-then-else" statements though.
This is perfect, thank you! I have a couple questions, if you don't mind:
Thanks again, this was so helpful!
Hi @aweldon1 - Please see my comments below:
1) In this case I'd leave "Limit End"=Null and I'd use "if-then-else":
if [Limit] >= [Limit Start] and [Limit] <= [Limit End] Then "Yes"
elseif
IsNull([Limit End]) and [Limit] >= [Limit Start] Then "Yes"
else
"No" endif
2) I like "if-then-else". I just do not like lengthy statements. These statements are difficult to understand and debug. This is my personal design preference.