Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi ,
Please I need your help ,
I have 2 tables :
- Cashflows
Fund
EntryDate
Commitment
- ReportingDate
Reportingdate
reportingdate Q-1
these two tables are not linked in my model .
I want to get im matrix this
fund | entrydate | Newcolumn |
New column is based on the value selected in my slicer (slicer contains reporting date )
And I want to get True Or False in Newcolumn if Entrydate is between ReportingDate and ReportingdateQ-1.
I was test many measure but it don't work:
Thanks
Solved! Go to Solution.
NewCommitment = VAR rd = SELECTEDVALUE(ReportingDate[ReportingDate]) VAR rdM1 = PREVIOUSQUARTER(ReportingDate[ReportingDate]) VAR filteredDates = FILTER(ReportingDate, ReportingDate[ReportingDate] = rd || ReportingDate[ReportingDate] = rdM1) RETURN SWITCH(TRUE(), AND(MIN(filteredDates[ReportingDate]) <= MAX(CashFlows[EntryDate]), MAX(CashFlows[EntryDate]) <= MAX(filteredDates[ReportingDate])), "True", "False" )
Please try this measure 🙂
Hi
Thanks for your answer . But i have the below error :
Kinds
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
109 | |
100 | |
39 | |
31 |
User | Count |
---|---|
154 | |
122 | |
77 | |
74 | |
44 |