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
Anonymous
Not applicable

Time Intelligence Calculation Group not working with my simple measure - Help

Hello,

 

I have a Time Intelligence calculation group with CY, PY, YoY, YoY %

The calculated group itself its fine, I made it with a tutorial and works with other measures, but not this one:

 

Increase =
VAR CY = 'Measures Table'[Sales]
VAR PY = CALCULATE('Measures Table'[Sales],SAMEPERIODLASTYEAR('Date'[Date]))
RETURN
SWITCH ( TRUE (),PY > 0 && CY > 0 && PY < CY, 'Measures Table'[Sales], BLANK ())
 
It only shows the CY column of the calculation group
How can I fix it?
1 ACCEPTED SOLUTION

@Anonymous , have you created calculation groups in tabular editor?

 

then something is wrong, because when you take group name, you should see all 4

 

calculation groups
https://www.sqlbi.com/blog/marco/2020/07/15/creating-calculation-groups-in-power-bi-desktop/

 

View solution in original post

5 REPLIES 5
amitchandak
Super User
Super User

@Anonymous , This does seem like a calculation group?

 

This measure will give you CY when both CY and PY > 0 and CY > PY

 

Increase =
VAR CY = [Sales]
VAR PY = CALCULATE([Sales],SAMEPERIODLASTYEAR('Date'[Date]))
RETURN
SWITCH ( TRUE (),not(isblank(PY)) && PY > 0 && not(isblank(CY)) && CY > 0 && PY < CY, [Sales], BLANK ())

Anonymous
Not applicable

@amitchandak 
Here is an image of 2 matrix

Both of them are using the Time Intelligence calculation group as columns, and Partner Names as rows
The one on the left uses Sales as Values

The one on the right uses the Increase meassure mentioned above

 

As you can see, with the Increase meassure, I can only see one column: CY
I need to see all the columns of the calculation group
Sales.png

@Anonymous , have you created calculation groups in tabular editor?

 

then something is wrong, because when you take group name, you should see all 4

 

calculation groups
https://www.sqlbi.com/blog/marco/2020/07/15/creating-calculation-groups-in-power-bi-desktop/

 

Anonymous
Not applicable

 

@amitchandak I created the calculation group exactly as in the link you sent, with tabular editor.

It still does not work

Anonymous
Not applicable

@amitchandak Thank you, I'll take a look at the calculation groups again!

You are awesome!

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.