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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Wolfi
New Member

Add a Letter infront of a Nummer in PowerQuery

Hello to everybody,

How can I add a letter infront of number at Power Query?

I have a Quater column  and would lig to create a new custom colum and add a "Q" in front of the quarter number.

Final result: Q#

The DAX formula will be: = "Q"&FiscalQuarter(column name)

I want to do it , before the import into Power Bi

 

Many Thanks for your help

Wolfgang

1 ACCEPTED SOLUTION

Thanks a lot to all for your suppport and help

Final Solution: "Q"&Text.from(FiscalQuarter)

Has had some probles with some emty cells as well! Now it is working

View solution in original post

3 REPLIES 3
Smalfly
Responsive Resident
Responsive Resident

Hi @Wolfi ,

 

try this: 

 

"Q" & Text.From(Date.QuarterOfYear([your date column name]))

Thanks a lot to all for your suppport and help

Final Solution: "Q"&Text.from(FiscalQuarter)

Has had some probles with some emty cells as well! Now it is working

jgordon11
Resolver II
Resolver II

= Table.AddColumn(PreviousStepName, "NewColumName", each "Q" & Text.From([Quarter]))

 

change PreviousStepName, "NewColumnName", and [Quarter] to match your query

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors