The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi All
I have below expression work fine :-
May i know how to add space between Company Name and Term with ----
So that it will display like :-
Classic Micro Techno----30Day----No Sa
Meaning instead of display , make it display as 30day
Paul
Solved! Go to Solution.
@admin11
Try this:
Customer AND Term = AR_S[CUSTOMER_AR_18] & "----" & AR_S[TERM] & "Day---- " & AR_S[PIC_5]
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
@admin11
Try this:
Customer AND Term = AR_S[CUSTOMER_AR_18] & "----" & AR_S[TERM] & "Day---- " & AR_S[PIC_5]
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hi admin11,
Perhaps you want something like the following:
Customer AND Term = AR_S[CUSTOMER_AR_18] & "---" & AR_S[TERM] & "Day" & "---" & AR_S[PIC_5]
Best Regards.