
Announcements
Hi,
I have the following 'StartsWith' function in my filter function :
StartsWith(
'Monthly Cost',
TextSearch.Text)
The 'Monthly Cost' is a number and the 'TextSearch is text.
How do I make this function work?
Regards,
Daniel
Hi @Anonymous
You can call the Text function to convert 'Monthly Cost' to text. However, the disadvantage of this is that it results in an expression that is not delegable.
StartsWith(
Text('Monthly Cost'),
TextSearch.Text
)