"filters"
6 TopicsCumulative measure & filters
Hello everyone, I created a graph, like you can see on the picture. I created the 2 curve by using the command "New visual calculation - Running sum" Everything is working well until I Try to apply filters on my graph ( The blue bars are adapting correctly) . I can Imagine that it is because the running sum is calculated before the the filters and it does not update the values. I also added the tab version of my graph. Does someone have an idea how to resolve this ? Thank you.545Views0likes3Comments4 Filters for Values using DAX in Report Builder
I am working on a Paginated report in REPORT BUILDER that the user would like to: Select date (Month/Year) then the PhysicianOrganization then the PCPLocation to have a pdf for that location only. (PhysicianOrganization must filter PCPLocation) Below the Physician Organization does not filter on the PCPLocation and it must! Dataset1 will be filtered by PhysicianOrganization, PCPLocation and Date (monthly reporting) which used month and year and PhysicianLocation Dataset which has the Physician Organization & PCPLocation values which the Parameters connect to. Below is what the report data looks like and I added the DAX fields below (this is from a CUBE or Tabular connection) I am thinking I should put the Year and Month in the PhysicianLocation dataset? I have two tables--- this contains 2 the PhysicianOrganization and PCPLocation parameter that are referenced in the Parameter short dataset: EVALUATE SUMMARIZECOLUMNS( 'Providers'[PhysicianOrganization] ,'Providers'[PCPLocation] ) The main dataset that has all the values but PhysicianOrganization and PCPLocation have the parameter referenced but that points to the short 1) table above. Only the Hand filled in Parameters for Month and Year (all hand filled in) are in the main dataset. How can I get what is needed? I just need the report to be able to 1st filter by PhysicianOrganization then PCPLocation (subset of the PhysicianOrganization column). Here is Dataset1 where all 4 parameters are referenced : EVALUATE SUMMARIZECOLUMNS( 'Providers'[PCPLocation], 'Providers'[PhysicianOrganization], 'Patients'[InsuranceType], 'DateDim'[Year], 'DateDim'[MonthNameAbbreviation], FILTER( 'DateDim', 'DateDim'[Year] = VALUE(@Year) ), FILTER( 'Providers', 'Providers'[PhysicianOrganization] = @PhysicianOrganization && 'Providers'[PCPLocation] = @PCPLocation ), FILTER( 'DateDim', 'DateDim'[MonthNameAbbreviation] = @Month ), FILTER( 'Patients', 'Patients'[Populations] = "HAP HFHS Employees" ), "UniquePatients", [UniquePatients], "TotalCostYTD", [TotalCostYTD], "MemberMonthsYTD", [MemberMonthsYTD], "Admits1000YTD", [Admits1000YTD], "ERVisitsYTD", [ERVisitsYTD], "ERVisits1000YTD", [ERVisits1000YTD], "BloodPressureNumerator", [BloodPressureNumerator], "BloodPressureDenominator", [BloodPressureDenominator], "BloodPressureRate", [BloodPressureRate], "DiabetesHbA1cLessThan8Numerator", [DiabetesHbA1cLessThan8Numerator], "DiabetesDenominator", [DiabetesDenominator], "DiabetesHbA1cLessThan8Rate", [DiabetesHbA1cLessThan8Rate], "ReadmitsYTD", [ReadmitsYTD], "ReadmitsYTDRate", [ReadmitsYTD%], "AdmitsYTD", [AdmitsYTD], "AllowedCost", [AllowedCost], "AllowedCostYTD", [AllowedCostYTD], "AllowedPMPMYTD", [AllowedPMPMYTD], "BreastCancerScreeningNumerator", [BreastCancerScreeningNumerator], "BreastCancerScreeningDenominator", [BreastCancerScreeningDenominator], "BreastCancerScreeningRate", [BreastCancerScreeningRate], "ColorectalCancerScreeningDenominator", [ColorectalCancerScreeningDenominator], "ColorectalCancerScreeningNumerator", [ColorectalCancerScreeningNumerator], "ColorectalCancerScreeningRate", [ColorectalCancerScreeningRate], "ERVisitsRate", [ERVisitsYTDMoreThan5Visits1000], "ERVisitsNumerator", [ERVisitsYTDMoreThan5Visits], "VirtualNumerator", [OutpatientUtilYTD], "VirtualRate", [OutpatientUtil1000YTD], "DepressionScreeningNumerator", [DepressionScreeningNumerator], "DepressionScreeningDenominator", [DepressionScreeningDenominator], "DepressionScreeningRate", [DepressionScreeningRate], "DepressionPositiveScreenNumerator", [DepressionPositiveScreenNumerator], "DepressionPositiveScreenDenominator", [DepressionPositiveScreenDenominator], "DepressionPositiveScreenRate", [DepressionPositiveScreenRate], "CervicalCancerNumerator", [CervicalCancerNumerator], "CervicalCancerDenominator", [CervicalCancerDenominator], "CervicalCancerRate", [CervicalCancerRate], "GenericNumeratorYTD", [GenericNumeratorYTD], "GenericDenominatorYTD", [GenericDenominatorYTD], "GenericFillRateYTD", [GenericFillRateYTD], "September 2023 YTD", "September 2023 YTD", "Zero", 0 )869Views0likes2CommentsHow to filter for multiple items
Hi All, If I have a filter called 'Student ID' that shows me all students and want to filter on a list of students that I am interested in, how can I do this? I know you can use Advanced filtering to paste in 2 different student IDs, but how can I look up a whole list? Going through the filter and manually selecting each student individually is not an option as sometimes we may want to look up a list of 100s of students. Thank you.Solved838Views0likes2CommentsDynamic Filter - Switch Filter column based on Parameter selection
hi All, In a table, I am using a Parameter for switching Row headers. Pulling row headers from Column A when Parameter = Month Pulling row headers from Column B when Parameter = Quarter Now, I also need to do this with a filter applied on that table. So, I would want the filter coming from Column A when Parameter is month and Column B when Parameter is Quarter. Is there a way to set this up? Thanks for all the help!Solved688Views0likes1Comment