Hi,
I'm fetching data from my database using the Filter function.
There's a column "customer" that is a Boolean type in the database, but in the application I want to change it to String. Is this possible? I've tried searching but came up with nothing.
Solved! Go to Solution.
You can add a column to the filtered results that show the string version of the customer boolean column.
Example:
AddColumns(Filter(...), "CustomerStringValue", Text(customer))
This creates a new column called "CustomerStringValue" that will have the text value of the customer boolean column.
You can add a column to the filtered results that show the string version of the customer boolean column.
Example:
AddColumns(Filter(...), "CustomerStringValue", Text(customer))
This creates a new column called "CustomerStringValue" that will have the text value of the customer boolean column.
Thank you!
User | Count |
---|---|
134 | |
131 | |
78 | |
75 | |
71 |
User | Count |
---|---|
210 | |
198 | |
67 | |
62 | |
53 |