Hi Samuel,
If you want to use multiple conditions you can use the following:
If(condition && condition, true value, false value);
For example, if the value for datacardvalue1 should be less or equal to datacardvalue2 and datacardvalue1 should be higher than datacardvalue3:
If(value(datacardvalue1.text) <= value (datacardvalue2.txt) && value(datacardvalue1.text) > value(datacardvalue3.text), edit, disabled)
Whenever you need only one, but it depends, you can use the following:
If(condition || condition, true value, false value);
For example, if the value for datacardvalue1 should be less or equal to datacardvalue2 or datacardvalue1 should be higher than datacardvalue3:
If(value(datacardvalue1.text) <= value (datacardvalue2.txt) || value(datacardvalue1.text) > value(datacardvalue3.text), edit, disabled)