Hi Community
I have a question with the IF(OR function within Power Apps I'm building an page where I want a button to be visible on condition of the values of data card values. Some data types are string and some are number on doing some testing I can get this to work if values are one type but not a mixture.
Text Example
IF(Or(DataCardValue71.Text="Yes",DataCardValue72.Text="Yes"),true, false)
Number Example
If(Value(DataCardValue75.Text)>0,true,false)
How do I write the formula to check both number and string types?