User Profile
cmkp2675
Frequent Visitor
Joined 1 year ago
User Widgets
Contributions
Re: Default Slicer Selection and Trend chart help!!!
Hi v-csrikanth Thank you for your response. But still not working no filters applied except Dropdown SLICER (it's mandatory) to filter other visuals. DAX: LoadDurationLast7Days = CALCULATE( SUM('etl_pipeline_audit'[pipeline_run_duration_mins]), FILTER( ALL('Date_Table'[Date]), 'Date_Table'[Date] >= TODAY() - 7 && 'Date_Table'[Date] <= TODAY() ) )1.6KViews0likes0CommentsDefault Slicer Selection and Trend chart help!!!
Hi Developers, I'm a newbie, My requirement is: 1) In my report I'm using Date Slicer, by default the Date slicer should show Latest Date when it get refreshed and it should also show all the dates in the table. Note: Without Bookmark 2) I have a trend chart by default it should show data for past 7 days e.g if the slicer is selected for the Today's dates (above slicer requirement has relation with it) obviously it'll show data for only 1 date instead it should show for the last 7 days how to do it. Please let me know the steps or youtube tutorialsSolved1.8KViews0likes8CommentsChange Workspace from DEV->QA-PROD in Deployment Pipelines for Power BI Dashboard
Hi Everyone, I published my Power BI dashboard to my fabric_dev env. I need my Datasources should change automatically from deployment to QA and QA to Prod It should pick the Datasources automatically without any manual intervention. Give me step-by-step instructions more granular and also include where can I get those information in fabric.Solved2.4KViews0likes5CommentsRe: Page-Level Filtering based on the Latest Date
Hi amitchandak Thank You for your response. The issue is if we apply the visual or page level filter it's not responding to the external SLICER. In this case could you please go through the screenshot I attached? In data the there are multiple dates but once the visual level filter or Page level is applied, if we want to see the data of different dates it won't work. That's my biggest issue. Please help me to resolve. LatestDate = CALCULATE(MAX(MetricsData[Date]), ALL(MetricsData)) Column DAX: IsLatest = IF(MetricsData[Date] = [LatestDate], 1, 0) Thank You Pradeep1.3KViews0likes0CommentsRe: Page-Level Filtering based on the Latest Date
Hi v-menakakota, Thank You for your response. The issue is if we apply the visual or page level filter it's not responding to the external SLICER. In this case could you please go through the screenshot I attached? In your data the there are multiple dates but once the visual level filter or Page level is applied if we want to see the data of different dates it won't work. That's my biggest issue. Please help me to resolve. LatestDate = CALCULATE(MAX(MetricsData[Date]), ALL(MetricsData)) Column DAX: IsLatest = IF(MetricsData[Date] = [LatestDate], 1, 0) Thank You Pradeep1.3KViews0likes4CommentsPage-Level Filtering based on the Latest Date
Dear Developers, I'm a newbie to PBI, my requirement is "I want my Power BI Report/Dashboard visuals should show the "Latest Data" in every VISUALS on every refresh. I tried applying the Page level filter and visual level filter based on the Latest Date, but issue is it's not responding to the slicer. E.g: I applied page level filter to show the data for 16-04-2025, but it's not filtering. I tried using the visual level filter too but what it's doing is it filters my table visual only for the Latest Date, if I change the slicer to different date it's completely BLANK. I have 3 pages for Timeliness, Completeness, Validation. I want to apply the same in all 3. Can someone please help out in this on High Priority!!! Show_Timeliness_Latest = IF ( etl_timeliness_log[Timeliness_ETLDate_Only] = [LatestDate_Timeliness], TRUE(), FALSE() ) Timeliness_LatestDate = CALCULATE ( MAX ( etl_timeliness_log[Timeliness_ETLDate_Only] ), REMOVEFILTERS(etl_timeliness_log) ) Timeliness_IsLatest = IF ( MAX(etl_timeliness_log[Timeliness_ETLDate_Only]) = [Timeliness_LatestDate], 1, 0 ) Help me in step by step procedure. I used all the AI tools but no luck. Thank You PradeepSolved1.3KViews0likes8Comments
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.