I know it sounds stupid, but please hear me out.
We have a situation where some SharePoint columns are prepopulated as percentages, but not every record in those columns is pre-populated.
I have built an app to pull the prepopulated fields in, and added further controls to permit the user populate additional column fields in the same record. Some of the prepopulated fields are mandatory, such that the user has to put some text in regardless if they have no data to begin with. The issue is these fields have been formatted as numbers with percentage overlays
Text(
Value(Parent.Default) * 100,
"#%"
)
However, where no data exists in the same control, I have been asked if it is possible to have the option to be able to type some text (such as "Not applicable"). I know with text columns, numbers and text may be added, but then I would assume I would lose the percentage formatting.
Is it possible to have all three: text, numbers, and percentage formatting? If so, how would I format the control to offer both percentages and text?
Thanks in advance