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
RMDNA
Solution Sage
Solution Sage

Custom column - "best of these choices"

Hi all,

 

I have a table (see below) with the Absolute Percent Error of three different models. I'd like to create a custom column with the "best" (lowest APE) of those three.

 

In Excel, I have =MIN(Table[@[Model 1 APE]:[Model 3 APE]])

 

What's the PQ equivalent? I'm unsure how to specify a range of columns.

 

1.PNG

 

As usual, thanks!

1 ACCEPTED SOLUTION
SteveCampbell
Memorable Member
Memorable Member

So really, we should not use a calculated column in DAX. It will result in the column being recaulclated every time and slow performance.

You could write a measure, which would not store a value for every row. As you asked for a column, instead, we should do this in the query editor. This will mean it is only calculated on a data refresh, and stored in the model.

 

In the query editor, go to the query, and select "Add Custom Column".

 

The code you can use is:

 

 

each if [Model 1 APE] = [Model 2 APE]then "N/A"

else if [Model 1 APE]< [Model 2 APE] then "Model 1 APE"
else if [Model 2 APE]< [Model 1 APE] then "Model 2 APE"
else "N/A"

Here, the second else if statement is a bit redundant, but I left it in so that you can add more logic if you wanted, to compare more models. You can add as many "else if" statements to use any logic you wish.

 



Did I answer your question? Mark my post as a solution! Proud to be a Super User!


Connect with me!
Stay up to date on  
Read my blogs on  



View solution in original post

4 REPLIES 4
SteveCampbell
Memorable Member
Memorable Member

So really, we should not use a calculated column in DAX. It will result in the column being recaulclated every time and slow performance.

You could write a measure, which would not store a value for every row. As you asked for a column, instead, we should do this in the query editor. This will mean it is only calculated on a data refresh, and stored in the model.

 

In the query editor, go to the query, and select "Add Custom Column".

 

The code you can use is:

 

 

each if [Model 1 APE] = [Model 2 APE]then "N/A"

else if [Model 1 APE]< [Model 2 APE] then "Model 1 APE"
else if [Model 2 APE]< [Model 1 APE] then "Model 2 APE"
else "N/A"

Here, the second else if statement is a bit redundant, but I left it in so that you can add more logic if you wanted, to compare more models. You can add as many "else if" statements to use any logic you wish.

 



Did I answer your question? Mark my post as a solution! Proud to be a Super User!


Connect with me!
Stay up to date on  
Read my blogs on  



Wow. Somehow, after almost three years of using Power BI, I entirely forgot about the Conditional Column button. Thanks for the support!

SteveCampbell
Memorable Member
Memorable Member

 

You can try:

New Column = 
_min_amnt = min([Model 1 APE],min([Model 2 APE],[Model 3 APE])

RETURN 

SWITCH( _min_amnt, 
  [Model 1 APE], "Model 1 APE",
  [Model 2 APE], "Model 2 APE",
  [Model 3 APE], "Model 3 APE",
  "None"
)

 

Although, this will not work in case of ties, and pick the first. What would be the desired solution if all 0, for example?

 



Did I answer your question? Mark my post as a solution! Proud to be a Super User!


Connect with me!
Stay up to date on  
Read my blogs on  



@SteveCampbell,

 

How about with two columns (Model 1 and 2)? In the case of a tie/all zero, display "N/A."

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.