The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi alll,
I have a calculated column:
Solved! Go to Solution.
Hi @IAM
Please try this DAX for a measure. Add 'Export'[Object] and 'Export'[Date created] columns to the same visual as well as this measure.
Recurring =
VAR dayParameter = [Waarde van NumDays]
VAR CurrPrc = SELECTEDVALUE ( 'Export'[Object] )
VAR CurrDate = SELECTEDVALUE ( 'Export'[Date created] )
RETURN
COUNTROWS (
FILTER (
ALL ( 'Export' ),
CurrPrc = 'Export'[Object]
&& 'Export'[Object] <> ""
&& 'Export'[Date created] > CurrDate - dayParameter
&& 'Export'[Date created] < CurrDate + dayParameter
)
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @IAM
Please try this DAX for a measure. Add 'Export'[Object] and 'Export'[Date created] columns to the same visual as well as this measure.
Recurring =
VAR dayParameter = [Waarde van NumDays]
VAR CurrPrc = SELECTEDVALUE ( 'Export'[Object] )
VAR CurrDate = SELECTEDVALUE ( 'Export'[Date created] )
RETURN
COUNTROWS (
FILTER (
ALL ( 'Export' ),
CurrPrc = 'Export'[Object]
&& 'Export'[Object] <> ""
&& 'Export'[Date created] > CurrDate - dayParameter
&& 'Export'[Date created] < CurrDate + dayParameter
)
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
122 | |
89 | |
75 | |
55 | |
45 |
User | Count |
---|---|
135 | |
121 | |
77 | |
65 | |
64 |