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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

How to split the charts based on Year and production center to get Deliver quantity count

I am trying to get Delivery quanioty count two split like year 2021 and 2022  & Production center UAO1 and UA01 

 

Production Center     Goods Issue Date          Delivertquantiy   

UA01                          06-01-2021                         1050 

RU02                          13-01-2021                         1050  

UA01                           20-01-2021                        1050

RU02                           06-02-2021                          111

UA01                           13-02-2021                           75

UA01                           20-02-2021                          430

UA01                            06-01-2022                         640

RU02                           13-01-2022                          640

UA01                            20-01-2022                         640

RU02                            06-02-2022                         130

RU02                            13-02-2021                         145

UA01                             20-02-2021                        245

 

I have added year slicer and Production center . i am trying to set two  x axis  one for year 2021 and   2022. also  for two axis in single  graph one for production center UA01 and another one RU02.  i created two measure  like below 

 

2021 dATE = CALCULATE(COUNT('Raw Data'[Delivery quantity]),DATESBETWEEN ('Raw Data'[Goods Issue Date],DATE(2021,01,01),DATE(2021,12,31)))

 

But when i creating 2022 measure i am getting  below Error 

 

<pi>A circular dependency was detected: Raw Data[2022 DATE], Raw Data[2021 dATE], Raw Data[2022 DATE].</pi>

 

2022 DATE = CALCULATE(COUNT('Raw Data'[Delivery quantity]),DATESBETWEEN ('Raw Data'[Goods Issue Date],DATE(2022,01,01),DATE(2022,12,31)))
 
Looking for support. thanks in advance.
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Do not use time intelligence function on table, prefer date table try like

 

CALCULATE(COUNT('Raw Data'[Delivery quantity]),Filter( 'Raw Data', 'Raw Data'[Goods Issue Date] >= DATE(2022,01,01) && 'Raw Data'[Goods Issue Date] <= DATE(2022,12,31)))

 

or all

 

CALCULATE(COUNT('Raw Data'[Delivery quantity]),Filter(all( 'Raw Data') , 'Raw Data'[Goods Issue Date] >= DATE(2022,01,01) && 'Raw Data'[Goods Issue Date] <= DATE(2022,12,31)))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

@amitchandak  thank you sir 

Anonymous
Not applicable

Hi @Anonymous ,

Does the answer to @amitchandak 's give you a solution? If so, please mark his answer as the solution. If not, please provide your pbix file without privacy information and more details with your desired output. (Or some sample data in a pbix file and desired output.)

 

How to Get Your Question Answered Quickly 

 

Best Regards
Community Support Team _ Polly

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Anonymous , Do not use time intelligence function on table, prefer date table try like

 

CALCULATE(COUNT('Raw Data'[Delivery quantity]),Filter( 'Raw Data', 'Raw Data'[Goods Issue Date] >= DATE(2022,01,01) && 'Raw Data'[Goods Issue Date] <= DATE(2022,12,31)))

 

or all

 

CALCULATE(COUNT('Raw Data'[Delivery quantity]),Filter(all( 'Raw Data') , 'Raw Data'[Goods Issue Date] >= DATE(2022,01,01) && 'Raw Data'[Goods Issue Date] <= DATE(2022,12,31)))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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