Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
I have data like this:
That I'd like to incorporate into this table on a dashboard:
Specifically I'd like to create "IRB of Record" which is the first chronological entry per study for IRB_Committee, for each "CIRB" entry. So for instance, this:
In the table on the dashboard, there are several query sources being used, they are all linked by "Protocol_no".
I'm sure I could sort my table by earliest row for each study etc... but I dont want to FILTER because I may need later action dates for other columns.. etc...
Long story short how can I add a column like this without deleting any source data by filtering?
Solved! Go to Solution.
Hi @JoeCrozier
You can refer to the following solution.
Sample data
1.Create a rank column in table
Rank = RANKX(FILTER('Table',[PROTOCOL_NO]=EARLIER('Table'[PROTOCOL_NO])&&[Type_]=EARLIER('Table'[Type_])),[ACTION_DATE],,ASC)
2.Then create a measure
Measure = CALCULATE(MAX('Table'[IRB_COMMITTEE]),'Table'[Type_]="CIRB",'Table'[Rank]=1,'Table'[PROTOCOL_NO] IN VALUES('Table'[PROTOCOL_NO]),REMOVEFILTERS())
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @JoeCrozier
You can refer to the following solution.
Sample data
1.Create a rank column in table
Rank = RANKX(FILTER('Table',[PROTOCOL_NO]=EARLIER('Table'[PROTOCOL_NO])&&[Type_]=EARLIER('Table'[Type_])),[ACTION_DATE],,ASC)
2.Then create a measure
Measure = CALCULATE(MAX('Table'[IRB_COMMITTEE]),'Table'[Type_]="CIRB",'Table'[Rank]=1,'Table'[PROTOCOL_NO] IN VALUES('Table'[PROTOCOL_NO]),REMOVEFILTERS())
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This worked great! Thank you! I accepted it as a solution but actually I have one question (that I hadnt included originally) thats related and maybe you could help with. So this measure totally returns the correct values, problem is: not every row HAS a value. I.e. not every protocol has a CIRB row. This is expected behavior and I'd love to just show those rows as blank on the dashboard. Problem is, if theres no result in the measure for those rows, they just aren't included on the dashboard. How can i still show the blank row?
That make sense?
Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot). Leave out anything not related to the issue.
If you are unsure how to do that please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.
If you want to get answers faster please refer to https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 31 | |
| 23 |