Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
i am new to Power Bi please help me to write this code in power bi:
COUNT(IF [Closed Date]>=([Run Date]-30)and[Closed Date]<=[Run Date]
THEN [Request Id]
END )/30
Solved! Go to Solution.
For your question, here is the method I provided:
Here's some dummy data
"Table"
Create a measure.
Measure =
CALCULATE(
COUNT('Table'[Request ID]),
FILTER(
ALL('Table'),
'Table'[Closed Date] >= 'Table'[Run Date] - 30
&&
'Table'[Closed Date] <= 'Table'[Run Date]
)
) / 30
Here is the result. You can adjust the number of decimal places as needed.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
pls provide some sample data and expected output
Proud to be a Super User!
pls provide some sample data and expected output
Proud to be a Super User!
For your question, here is the method I provided:
Here's some dummy data
"Table"
Create a measure.
Measure =
CALCULATE(
COUNT('Table'[Request ID]),
FILTER(
ALL('Table'),
'Table'[Closed Date] >= 'Table'[Run Date] - 30
&&
'Table'[Closed Date] <= 'Table'[Run Date]
)
) / 30
Here is the result. You can adjust the number of decimal places as needed.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |