Displaying two values as a result
-
Hello, I have a bit complicated question.
We have a calculation that is based on only 1 input. The result changes according to the input’s number.
We have 3 ranges that display 3 different results, for example:
– from 0 to 100 => result says “$50 is the cost”
– from 101 to 200 => result says “$100 is the cost”
– from 201 to 2000 => result says “Price ranges from $150 to $600”The first two work just fine. The results are created as a basic sentence as follow:
const 1st= “$50 is the cost”;The problem is our 3rd result. The third result is based on this calculation:
fieldname*3.5 and fieldname*6.5.
Like this “Price ranges from fieldname*3.5 to fieldname*6.5”My question is twofold – How can I display two values inside of one result? How can I add the dollar tag to the numbers?
If I’m not being clear enough, please let me know
Thank you
- The topic ‘Displaying two values as a result’ is closed to new replies.