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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
thomasreick
Resolver I
Resolver I

Creating a measure based on one physical columns and one measure???

Hi all,

please recommend on the following...

I need to calculate a measure out of two columns within the same table.

One is a physical column, one is result of count-aggregation.

One column should be COUNT(Index)), the other is a disjunctive condition set by PowerQuery in field [tmp].

Values for [tmp] are either 5 or 0.

 

I do not get the point on how to set IF-Statement....

 

IF (AND([tmp]=5), COUNT([Index])>=5,5,

IF (AND([tmp]=0), COUNT([Index])>=5,4,

IF (AND([tmp]=0), COUNT([Index])=4,3,

IF (AND([tmp]=0), COUNT([Index])=3,2,

IF (AND([tmp]=0), COUNT([Index])=2,2,

IF (AND([tmp]=0), COUNT([Index])=1,1,0))))

 

All hints welcome.

 

thx&brgds

Thomas

 

1 ACCEPTED SOLUTION
jppv20
Solution Sage
Solution Sage

Hi @thomasreick ,

 

Try this measure:

Measure =
IF(AND(MAX('Table'[TMP])=5,COUNT([Index])>=5),5,
IF (AND(MAX('Table'[TMP])=0, COUNT([Index])>=5),4,
IF (AND(MAX('Table'[TMP])=0, COUNT([Index])=4),3,
IF (AND(MAX('Table'[TMP])=0, COUNT([Index])=3),2,
IF (AND(MAX('Table'[TMP])=0, COUNT([Index])=2),2,
IF (AND(MAX('Table'[TMP])=0, COUNT([Index])=1),1,0))))))
 
If I answered your question, please mark it as a solution to help other members find it more quickly.

View solution in original post

4 REPLIES 4
jppv20
Solution Sage
Solution Sage

Hi @thomasreick ,

 

Try this measure:

Measure =
IF(AND(MAX('Table'[TMP])=5,COUNT([Index])>=5),5,
IF (AND(MAX('Table'[TMP])=0, COUNT([Index])>=5),4,
IF (AND(MAX('Table'[TMP])=0, COUNT([Index])=4),3,
IF (AND(MAX('Table'[TMP])=0, COUNT([Index])=3),2,
IF (AND(MAX('Table'[TMP])=0, COUNT([Index])=2),2,
IF (AND(MAX('Table'[TMP])=0, COUNT([Index])=1),1,0))))))
 
If I answered your question, please mark it as a solution to help other members find it more quickly.

Hi JPPV20,

this works perfect thank you.

I think I got lost somewhere in between the brackets...

Thomas

HotChilli
Super User
Super User

To debug an IF statement, reduce it to it's simplest form, make that work and then build it up.

So, for starters, make the first line work. Hint : AND takes 2 parameters

amitchandak
Super User
Super User

@thomasreick , It need to be a measure like

 

Switch(True(),
(AND(Max(Table[tmp])=5), COUNT([Index]) ) >=5,5,
(AND(Max(Table[tmp])=0), COUNT([Index]) ) >=5,4
// Add others
)

 

Add mor conditions as per need

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.