Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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.