Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Conditional format formula

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.

 

avazquezd75_1-1652375479911.png

 

1 ACCEPTED SOLUTION
ribisht17
Super User
Super User

@Anonymous 

 

This variable can catch * for you

 

 

LEFT(Table[Column]), 1) = "*"

 

 

In other words,

 

IF( LEFT(Table[column]),1)="*","Corrupt","Fine")

 

Ritesh

View solution in original post

1 REPLY 1
ribisht17
Super User
Super User

@Anonymous 

 

This variable can catch * for you

 

 

LEFT(Table[Column]), 1) = "*"

 

 

In other words,

 

IF( LEFT(Table[column]),1)="*","Corrupt","Fine")

 

Ritesh

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors