Take the decimals out of a calculated sharepoint column in Power Apps




Add this to text property:
Round(
      Value(ThisItem.CalculatedField),
      0
)

My specified formula for my app

Round(
      Value(ThisItem.TotalNumberOfPassengers),
      0
)