March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe 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
This is the string i have used in Excel: =IFERROR(IF([@Status]="(4) Completed",CONCATENATE([@DebriefYear],"_",[@Entity]),""),NA())
I have the same data in Power Bi I just cant figure out how to get either a custom column to do this or how to create a measure.
This is the Secon field i will need as well: =IFERROR(IF([@Status]="(4) Completed",IF((COUNTIFS([Entity Concat1],[@[Entity Concat1]])-COUNTIF($AF$2:$AF2,$AF2))=0,1,0),""),NA())
Thank you for your help!
Solved! Go to Solution.
For the first one @sesa145093 this will work:
if [Status] = "(4) Completed" then Text.From([Debrief Year]) & "_" & [Entity] else null
All Power Query if/then/else constructs are logically like Excel's IF() statement, but it is if/then/else with two requirements:
As for your second question, we need data. I have no idea what is in AF2 or what you are trying to accomplish there.
How to get good help fast. Help us help you.
How To Ask A Technical Question If you Really Want An Answer
How to Get Your Question Answered Quickly - Give us a good and concise explanation
How to provide sample data in the Power BI Forum - Provide data in a table format per the link, or share an Excel/CSV file via OneDrive, Dropbox, etc.. Provide expected output using a screenshot of Excel or other image. Do not provide a screenshot of the source data. I cannot paste an image into Power BI tables.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingYou are welcome @sesa145093 - I hope you don't mind but I marked my answer as the solution since it had the working code. 😁
If you need help with the 2nd part of your question, you could start a new thread for just that including some sample data and expected results per the links in my post above.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingFor the first one @sesa145093 this will work:
if [Status] = "(4) Completed" then Text.From([Debrief Year]) & "_" & [Entity] else null
All Power Query if/then/else constructs are logically like Excel's IF() statement, but it is if/then/else with two requirements:
As for your second question, we need data. I have no idea what is in AF2 or what you are trying to accomplish there.
How to get good help fast. Help us help you.
How To Ask A Technical Question If you Really Want An Answer
How to Get Your Question Answered Quickly - Give us a good and concise explanation
How to provide sample data in the Power BI Forum - Provide data in a table format per the link, or share an Excel/CSV file via OneDrive, Dropbox, etc.. Provide expected output using a screenshot of Excel or other image. Do not provide a screenshot of the source data. I cannot paste an image into Power BI tables.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingAwesome!! Thanks for this!!
You are welcome @sesa145093 - I hope you don't mind but I marked my answer as the solution since it had the working code. 😁
If you need help with the 2nd part of your question, you could start a new thread for just that including some sample data and expected results per the links in my post above.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingMarch 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
16 | |
13 | |
12 | |
9 |
User | Count |
---|---|
34 | |
31 | |
20 | |
19 | |
17 |