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

Need help in creating an inflow/outflow chart using Power BI

Hi All,

I have been looking to create an inflow/outflow report with the below data where I am expecting a Bar Chart with Count of Numbers Opened Vs Count of Numbers Closed for each month and year.

 

Inflow.PNG

 

I could achieve Opened Count Separately and Closed Count Separately. Not able to include them both in a Column Chart for showcasing the inflow vs outflow.

 

Any idea of achieving the same?

 

Thanks in Advance!

Arun

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@Anonymous ,

 

You may refer to the post below.

https://community.powerbi.com/t5/Desktop/Create-a-Clustered-Column-Chart-using-Two-Summarize-Measures/m-p/340433#M152410

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-chuncz-msft
Community Support
Community Support

@Anonymous ,

 

You may refer to the post below.

https://community.powerbi.com/t5/Desktop/Create-a-Clustered-Column-Chart-using-Two-Summarize-Measures/m-p/340433#M152410

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi @v-chuncz-msft ,

 

I tried it but it is not giving me any result and I am getting an empty chart. I used the below formula for a Calendar table:

 

Date = ADDCOLUMNS
(CALENDAR(DATE(2000,1,1),DATE(2050,12,31)),
"Year", YEAR([Date]),
"Monthnumber", FORMAT ( [Date], "MM" ),
"YearMonthnumber", FORMAT ( [Date], "YYYY/MM" ),
"YearMonthShort", FORMAT ( [Date], "YYYY/mmm" ),
"MonthNameShort", FORMAT ( [Date], "mmm" ),
"MonthNameLong", FORMAT ( [Date], "mmmm" ),
"DayOfWeekNumber", WEEKDAY ( [Date] ),
"DayOfWeek", FORMAT ( [Date], "dddd" ),
"DayOfWeekShort", FORMAT ( [Date], "ddd" ),
"Quarter", "Q" & FORMAT ( [Date], "Q" ),
"YearQuarter", FORMAT ( [Date], "YYYY" ) & "/Q" & FORMAT ( [Date], "Q" )
)
 
And created inflow and outflow using the below measures:
 

Inflow =
VAR d =
MAX ( 'Calendar'[Date] )
RETURN
CALCULATE (
DISTINCTCOUNT ('Page 1 (2)'[Number]),
'Page 1 (2)'[Opened] = d
)


Outflow =
VAR d =
MAX('Date'[Date])
RETURN
CALCULATE(
DISTINCTCOUNT('Page 1 (2)'[Number]),
'Page 1 (2)'[Closed] = d
)

 

Am I missing something?

 

Thanks,

Arun

Anonymous
Not applicable

@v-chuncz-msft 

 

 

 

 

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.

Top Solution Authors