This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi All,
My Requirement is I have a set of data from Jan, Feb, Mar, Apr, Jun, Jul, and Aug. If I select July in the filter its shows the total as a multiplication of July month value into the count of months which have value in the data.
For Example the value for each month
Jan->10
Feb->20
Mar->10
may->
Apr->30
Jun->5
Jul->10
if I select Jul means I want calculations like (10*5)=50. May month have no values so it should take value remaining 5 months have only value so we take count as 5.
Please help to find a solution for this one.
Thanks in Advance.
Solved! Go to Solution.
@Shreeram04 , Try a measure like
Measure =
var _count = countx(Summarize(All(Table), Table[Month], "_1", sum(Table[Value]) ), [Month])
return
_count*sum(Table[Value])
@Shreeram04 , Try a measure like
Measure =
var _count = countx(Summarize(All(Table), Table[Month], "_1", sum(Table[Value]) ), [Month])
return
_count*sum(Table[Value])
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 61 | |
| 36 | |
| 29 | |
| 22 | |
| 21 |