Hi,
In my decimal column, there are some values after the comma, some in the form of numbers, so no value after zero. if there is a value after zero, how can I show if there is a decimal or number.
You could have a form column that is a decimal they input the value and can edit
Show If: CONTEXT(“ViewType”)=Form
then you can have another text column that only shows on non-forms (could be a Virtual Column)
Show If: CONTEXT(“ViewType”)<>Form
App Formula: ABS([FormInputValue])
Yes I believe you’ll have to have one column for the user to interact with and create a text column that uses a formula for it to properly remove the 0s
Testing, I see Expression Assistant displays 0, but the value displayed in the app is 0.00. That suggests to me Expression Assistant is displaying the internal value rather than the display value. EA using the internal format is typical, so this is expected. The display format for a Decimal value is governed by the column’s Type Details. The (fixed!) number of digits after the decimal is determined by the Decimal digits property.
Yeah, idk if it’d work but my suggestion was creating a second row that would be the formatted decimal in a text column. The original decimal column would be visible to edit on forms and the text column would be visible on non-forms solely to display it correctly.