Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
A beginner question 🙂
We have a recurring monthly event that we use the same survey for - SurveyMonkey connecte to PowerBi.
We usually get responses within 5-6 days after the event. On the right there is a list of event dates, from event plan table. I need help showing average score for the event on selected date - so I'm thinking a measure that will display average of score for 7 days following selected date.
@Alina-R , You need have date/table of date(no timestamp) . it should not join with event table
then you can have measure like this displayed with event date or joined date table
//Date1 is independent Date table, Date is joined with Table
new measure =
var _max = maxx(allselected(Date1),Date1[Date])
var _min = _max -5
return
calculate( Average(Event[Score]), filter('Date', 'Date'[Date] >=_min && 'Date'[Date] <=_max))
Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI
Hi Amit,
Thanks for your reply. Unfortunately I can't quite get it to work. There is no error in measure itself, but it won't display:
"Communication plan" has date and is joined with Event table.
Date1 is independent date table.
What am I doing wrong?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
146 | |
75 | |
64 | |
52 | |
47 |
User | Count |
---|---|
218 | |
88 | |
73 | |
64 | |
60 |