Hi
I made a calculation in a default field and it returns an non finite number.
I don't know how to solve it. If I calculate it myself, it's indeed 664561,833333333... but how do I change it to 2 decimals?
I tried the round function but that doesn't help.
the text() function doesn't help, the errors stays 😞
If(And("One time" in DataCardValue4_2.Selected.Value, "2022" in DataCardValue42.Selected.Value),Value(DataCardValue21_2.Text),If(And("Contract" in DataCardValue4_2.Selected.Value,
DataCardValue43.Selected.Value <= 2022,DataCardValue44.Selected.Value >= 2022), Value(DataCardValue21_2.Text)/(DataCardValue44.Selected.Value - DataCardValue43.Selected.Value +1),0))
Did You try to just wrap it in Text(num,"0.0") ? and than wrap Value() ? will look like abomination 🙂 but maybe it will work 😉
Hi @Sarah_cool
You can wrap your exisiting formula inside a call to Text:
Text(<InsertYourExistingFormula>,
"#.00"
)
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473