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
ekaponkratova
Frequent Visitor

If it is the first date or last date use one aggregation; if any other day, use another aggregation

Let's assume I have the below dataset. 

1.png

What I need to create the below matrix where if it is the beginning or month end, I aggregate A or B in Category 1 but if it is any other day in a month but 1st or last, I am tagging A or B in Category 2 and calculate COUNT. I guess I need to use SWITCH, is not it?

2.png

1 ACCEPTED SOLUTION
ChrisMendoza
Resident Rockstar
Resident Rockstar

@ekaponkratova - 

Maybe this is what you were looking for?

 

I created a Calculated Column, to get labels for Columns as:

Column = 
VAR startMonth = STARTOFMONTH(TableName[date])
VAR endMonth = ENDOFMONTH(TableName[date].[Date])

RETURN 
IF(
    TableName[date]=startMonth || TableName[date]=endMonth,
    "Category 1",
    "Category 2"
)

Then I created a Measure as:

Measure = 
SWITCH (
    TRUE (),
    STARTOFMONTH ( TableName[date] ) = MAX ( TableName[date] )
        || ENDOFMONTH ( TableName[date].[Date] ) = MAX ( TableName[date] ), SUM ( TableName[quantity] ),
    STARTOFMONTH ( TableName[date] ) <> MAX ( TableName[date] )
        || ENDOFMONTH ( TableName[date].[Date] ) <> MAX ( TableName[date] ), COUNTROWS ( TableName )
)

Results in the left matrix:

2.PNG






Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



View solution in original post

4 REPLIES 4
ChrisMendoza
Resident Rockstar
Resident Rockstar

@ekaponkratova - 

Maybe this is what you were looking for?

 

I created a Calculated Column, to get labels for Columns as:

Column = 
VAR startMonth = STARTOFMONTH(TableName[date])
VAR endMonth = ENDOFMONTH(TableName[date].[Date])

RETURN 
IF(
    TableName[date]=startMonth || TableName[date]=endMonth,
    "Category 1",
    "Category 2"
)

Then I created a Measure as:

Measure = 
SWITCH (
    TRUE (),
    STARTOFMONTH ( TableName[date] ) = MAX ( TableName[date] )
        || ENDOFMONTH ( TableName[date].[Date] ) = MAX ( TableName[date] ), SUM ( TableName[quantity] ),
    STARTOFMONTH ( TableName[date] ) <> MAX ( TableName[date] )
        || ENDOFMONTH ( TableName[date].[Date] ) <> MAX ( TableName[date] ), COUNTROWS ( TableName )
)

Results in the left matrix:

2.PNG






Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



And you are officially genius. Just question. Why do we need the 2nd measure? Cannot I just use quantity?

@ekaponkratova -

 

I thought you needed a SUM([quantity]) when Category 1 othewise COUNTROWS. The Measure is trying to do that.






Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



Hm, I still need to test, but I what I did, I re-used your category and then, just dropped quantity to values and used sum as aggregation. 

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.