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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
harrinho
Helper III
Helper III

How to show QoQ growth

Hi everyone, 

 

My excel spreadsheet includes a column Fiscal Period in the form of "Q1-2015", "Q2-2015" ETC UP TO Q4-FY17. 

 

I have created the following viz and I'd like to add a card which somehow will highlight the QoQ growth, from Q3-FY17 to Q4-FY17 

 

sales qoq.JPG

Would that be possible? 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @harrinho,

 

You can try to use below formula to calculate the QoQ growth, but I don't think it is possible to use card visual to highlight growth volume:

 

QoQ growth = 
var current_Date=MAX('Table'[Date])
var previous_Date=DATE(YEAR(current_Date),MONTH(current_Date)-3,1)
var curr=SUMX(FILTER(ALLSELECTED('Table'),FORMAT([Date],"yyyy-q")=FORMAT(current_Date,"yyyy-q")),[Amount])
var prev=SUMX(FILTER(ALLSELECTED('Table'),FORMAT([Date],"yyyy-q")=FORMAT(previous_Date,"yyyy-q")),[Amount])
return
if(prev<>0,DIVIDE(prev-curr,prev),0)

3.PNG

 

 

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @harrinho,

 

You can try to use below formula to calculate the QoQ growth, but I don't think it is possible to use card visual to highlight growth volume:

 

QoQ growth = 
var current_Date=MAX('Table'[Date])
var previous_Date=DATE(YEAR(current_Date),MONTH(current_Date)-3,1)
var curr=SUMX(FILTER(ALLSELECTED('Table'),FORMAT([Date],"yyyy-q")=FORMAT(current_Date,"yyyy-q")),[Amount])
var prev=SUMX(FILTER(ALLSELECTED('Table'),FORMAT([Date],"yyyy-q")=FORMAT(previous_Date,"yyyy-q")),[Amount])
return
if(prev<>0,DIVIDE(prev-curr,prev),0)

3.PNG

 

 

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.