User Profile
BIBen
Helper I
Joined 5 years ago
User Widgets
Contributions
Re: How to show which audits belong to a person in drill-down
I tried switching the arrows to be unidirectional, but that did not solve the issue. Being new (and probably naive), I liked the two-directional arrows so that options not allowed in the visuals do not appear in the slicers, like when I click an officve, onthe the employees who work at that offive appear in the slicers, ans such. If you wouldn't mind looking over my schema, I include it below. To assit with parsing what is going on, in the below screen shot, I framed 3 structures that are generated dynamically from the structure in the upper left corner; these are the 3 roles involved in the process, requiring (I uderstand) their own tables. I realize that there is a ton of nuance in schema design, but, if you have the time, please, help me pinpoint the issue, I would be greatly appreciative of your help. I can supply whatever other collateral data you may need, and answer whatever questions you may have, to help further this solution. Thank you, Ibendlin.1.3KViews0likes2CommentsRe: How to show which audits belong to a person in drill-down
I am going to look into everything you said and try to make i twork from my end. It may be obvious to you, but I learned Power BI and relational tables for this report, and very much appreciate you help. When it works, I'll award Solution, I promise. Thank you, Ibendlin.1.3KViews0likes0CommentsHow to show which audits belong to a person in drill-down
(Very much learning Power BI; thank you for your patience, in advance. I always award "Solution" to solutions.) The Setup I have multiple audits belonging to each of several persons; a person, in this case, is called "Provider" I want to start with displaying a list of all of the Providers. I want to click a provider's name, and see only the audits they are the subject of. That's it, and I can't seem to get the hang of it. The Attempt I am pretty close: But, because I am using the Chart Number column, as-is, when I click the "+" sign to drill-down, I get all the chart audits, with data for the appropriate chart number populated: The Tables cr508_providerkey and ProviderRosterKey make the one-to-many relationship between the two tables. I am assuming (and have failed in my several attempts) that I need to make a measure or column out of 'Chart Number': The Goal Click the "+" sign next to the Provider's name, and see a list of chaerts where their ProviderRosterKey is listed under cr508_providerkey Sorry if this doesn't help (PowerApps example to maybe help visualize the solution I am looking for better) If I were doing this in Power Apps, it would be a nested gallery, with: - the parent gallery items property being 'Encounter Provider Roster'.'Provider Name' - and the inner gallery items property being something like Filter(Charts, ThisItem.cr508_providerkey = ProviderRosterKey, 'Chart Number') (I've been doing a lot of Power Apps lately, and now it is time to work on the reporting aspect, which brings me here.) The Very Sincere Thanks Thank you, sincerely, for your time and help. I recognize that I would not be where I am in my career without the assistance of my excellent Forum leaders andsolution-providers, and I know it.1.5KViews0likes5CommentsRe: REMEDIAL: How to create a column using LOOKUPVALUE()
WORKING SOLUTION (I don't know why I need the min() function, but it works flawlessly...I hope it helps): Provider Name = LOOKUPVALUE( cra15_ccadroster[cra15_fullname], cra15_ccadroster[cra15_rosterkey], FORMAT(min(cra15_ccadchart[cra15_providerkey]), "General Number") )720Views0likes0CommentsRe: LOOKUPVALUE - Basic Functionality
ChrisMendoza, I can't get mine to work like yours. One issue I uncovered is a data type mismatch. I addressed that with a FORMAT() function. Then, for some reason, I need a min(), too. Here is the working solution: Provider Name = LOOKUPVALUE( cra15_ccadroster[cra15_fullname], cra15_ccadroster[cra15_rosterkey], FORMAT(min(cra15_ccadchart[cra15_providerkey]), "General Number") ) If you could explain the reason I need a min() I would pre greatly appreciative and would award that with another solution. Thank you for your help.1.1KViews1like0CommentsRe: How To Use LOOKUPVALUE
selimovd Denis, It is very tough to see, but the underscore is actually there...sorry for the lousy screenshot. Looking at the error message in the table visualization I see that there is a data-type mis-mmatch, so fo FORMAT()ed one of the mumbers. I also had to min() the number which is very strange to me as there is only one number provided in the ProviderKey. Solution: Provider Name = LOOKUPVALUE( cra15_ccadroster[cra15_fullname], cra15_ccadroster[cra15_rosterkey], FORMAT(min(cra15_ccadchart[cra15_providerkey]), "General Number") ) This seems to work. If you could and would explain why it works, expecially the min(), I will happily award you further Solutions. Thank you, Denis. -Ben1.5KViews0likes0CommentsRe: How To Use LOOKUPVALUE
selimovd Yeah, I actually tried that, burt reverted the form back to what the docs has. removing ambiguity produces this: Again, cra15_providerkey is in cra15_ccadchart: There is a One:Many relation**bleep** between RosterKey and ProviderKey but I haven't been able to get RELATED() to work, either:1.5KViews0likes2CommentsRe: REMEDIAL: How to create a column using LOOKUPVALUE()
amitchandak , Apologies, but I do not see where you explained LOOKUPVALUE, neither here nor in the previous post: "@BIBen , Unless you want to name as new columns Join table. You need to have two copies of the Roster table. one join providerkey and other chartauditkey Else create new columns = provide(Filter(Roster,Roster[Rosterkey] = Join[ProvierKey] ), Roster[Roster name]) = provide(Filter(Roster,Roster[Rosterkey] = Join[chartauditkey ] ), Roster[Roster name])" If you could explain LOOKUPVALUE and how I can use it here, specifically, I would be greatly appreciative. Thank you.726Views0likes0Comments
Data Privacy
Microsoft Fabric Community and Privacy
To learn more about how we manage your data, please review the Microsoft Fabric Community Data Privacy guide.