Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi, I am trying to add a new measure with the average of issues between (2) columns (see below).
| # of Issues - Dec | # of Issues - Jan | Average of Issues |
| 7 | 15 | |
| 3 | 5 | |
| 10 | 7 |
Any help will be appreciated. Thank you.
Solved! Go to Solution.
Hi @Marcegon ,
Please try below steps:
1. below is my test table
Table:
2. create a measure with below dax formula
Measure =
VAR _dec =
SELECTEDVALUE ( 'Table'[#of Issues - Dec] )
VAR _jan =
SELECTEDVALUE ( 'Table'[# of Issues - Jan] )
RETURN
DIVIDE ( _dec + _jan, 2 )
3. add a table visual with fields and measure
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 @Marcegon ,
Please try below steps:
1. below is my test table
Table:
2. create a measure with below dax formula
Measure =
VAR _dec =
SELECTEDVALUE ( 'Table'[#of Issues - Dec] )
VAR _jan =
SELECTEDVALUE ( 'Table'[# of Issues - Jan] )
RETURN
DIVIDE ( _dec + _jan, 2 )
3. add a table visual with fields and measure
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.
Sorry. Forgot to mention that no matter the numbers in the (2) columns, I am getting "0, 1, and 2s"
Thank you!
Hi, I accepted this as a solution, but I just realized it is not giving me the correct numbers. Could you please let me know what I did wrong? See my measure below:
Sorry. Forgot to mention that no matter the numbers in the (2) columns, I am getting "0, 1, and 2s"
Thank you!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 57 | |
| 52 | |
| 45 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 109 | |
| 108 | |
| 40 | |
| 33 | |
| 26 |