Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I am trying to create a monthly average column for an exchange rate table. Here is a screenshot of the the table structure:
What would be the best way to calculate a monthly average rate per combo in the table? Thx!
Solved! Go to Solution.
Hi @JaviGoldstein ,
Please try to create a new column with below dax formula:
Column =
VAR cur_combo = [Combo]
VAR cur_date = [Date]
VAR cur_year =
YEAR ( cur_date )
VAR cur_month =
MONTH ( cur_date )
VAR tmp =
FILTER (
'Table',
[Combo] = cur_combo
&& YEAR ( [Date] ) = cur_year
&& MONTH ( [Date] ) = cur_month
)
RETURN
AVERAGEX ( tmp, [Rate] )
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @JaviGoldstein ,
Please try to create a new column with below dax formula:
Column =
VAR cur_combo = [Combo]
VAR cur_date = [Date]
VAR cur_year =
YEAR ( cur_date )
VAR cur_month =
MONTH ( cur_date )
VAR tmp =
FILTER (
'Table',
[Combo] = cur_combo
&& YEAR ( [Date] ) = cur_year
&& MONTH ( [Date] ) = cur_month
)
RETURN
AVERAGEX ( tmp, [Rate] )
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi @JaviGoldstein ,
try to plot a table visual with Month Column from your calendar table and a measure like:
measure = AVERAGE(data[Rate])
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |