Hello, Im a new user on Power BI ... trying to get familiarize.
We have an issue while creating a column, a value is getting trimmed from the source.
Instead of showing the full number, the source is showing a trimmed value starting with an *.
What type of formula can I use to catch any value that start with an * ? so far we havent been able to figure it out.
Solved! Go to Solution.
This variable can catch * for you
LEFT(Table[Column]), 1) = "*"
In other words,
IF( LEFT(Table[column]),1)="*","Corrupt","Fine")
Ritesh
This variable can catch * for you
LEFT(Table[Column]), 1) = "*"
In other words,
IF( LEFT(Table[column]),1)="*","Corrupt","Fine")
Ritesh
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
177 | |
67 | |
66 | |
57 | |
55 |
User | Count |
---|---|
193 | |
103 | |
90 | |
80 | |
73 |