Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a fiscal year column, fiscal period, and fiscal quarter. The Fiscal Quarter column is calculated by dividing the fiscal period by 3 then rounding up the number. As a result, the values in this column appear as 1, 2, 3,...etc.

I want to change how the values appear so that they are displayed as "Qtr - FY" (e.g, Q1 - FY2021) in the same column that contains the calculation formula, preferably by getting this info from the available columns. Any idea how to do this?

question from:https://stackoverflow.com/questions/65879271/change-column-display-in-power-bi-power-query

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

I think you are looking for CONCATENATE

CONCATENATE(<text1>, <text2>)  

Concatenate multiple columns:

=CONCATENATE( [FirstName]&" ", CONCATENATE( IF( LEN([MiddleName])>1, LEFT([MiddleName],1)&" ", ""), [LastName]))

To add static values in between columns, follow this.

= "Q" & [fiscal quarter] & " - FY" & [fiscal year]  

Read more on How to concatenate multiple column in Power BI


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...