i have SharePoint customized form using power app
in that one column value isdatacardvalue1= Value((DataCardValue34.Text) + (DataCardValue35.Text) + (DataCardValue30.Text)+ (DataCardValue18.Text)+(DataCardValue28.Text)+(DataCardValue20.Text)+(DataCardValue32.Text)+(DataCardValue42.Text)+(DataCardValue40.Text)+(DataCardValue38.Text))/10
and i have another column where i am trying to get value from data card 1 and depending on that setting a value
| 4.50 to 5.00 | Outstanding |
| 4.00 to 4.49 | Very Strong |
| 3.00 to 3.99 | Strong |
| 2.00 to 2.99 | Adequate |
| 1.00 to 1.99 | Developmental |
i tried t0 use If(Value(DataCardValue1.Text) >= 4.5 , "Outstanding", Value(DataCardValue1.Text) >= 4 , "Very Strong")
but its not working , please help