Thursday, March 30, 2023

Add ellipses (... dots) after a long text in PowerApps

 We have a variable - 'longText' having a long list of characters and we want to trim the characters after a limit e.g. 130 characters, we can use below formula for the 'Text' property:


If(Len(longText)>130, Concatenate(Left(longText,130),"..."),longText)


No comments:

Post a Comment

Add Service Principle support in Custom Connector

  then search for "Streamlining Integration: Using Service Principal authentication on Custom connectors with Microsoft Graph Applicati...