fact table
4 TopicsWhy rankx function shows duplicated rank?
Hello, I am using this 1 dax in order to rankx my resource groups: Rank (Selected Category) = VAR cat = SELECTEDVALUE ( Fct_EA_AmortizedCosts_Daily[ResourceGroup] ) RETURN IF ( NOT ISBLANK ( cat ), VAR r = RANKX ( ALL(Fct_EA_AmortizedCosts_Daily[ResourceGroup]), -- ignore slicer on category [Total Amortized Cost], , DESC, Dense ) RETURN IF ( r <= 5, r, 6 ) ) and without any selection my ranked is duplicated: Why? If this is a matter of duplicated rows in fct amortized table? Best, JacekSolved1.5KViews0likes9CommentsReactive fact table when i clicked the bar of chart, made of 3 different dates.
Hi, experts. I tried and searched, but I can find the solution. I have fact table, it shows items about project. Like id, title, teamname, assigned to, startdate, enddate, ceated, status... And 2 charters, one is clutered column, another is line with clustered column chart. Slicer settled with date of calendar table. And calendar table [date] got a relationship with created date of origin table. Activated Start date, end date are got a relationship with calendar date, too, but not activated. Made some measures for count of items of each dates( created, start, end ) Charter has those 3 measures. The table basically shows items(records:id,title,status...) based on created date and the chart shows count of created, start, end date items on bar If I clicked the one of three bars on chart, then I want to show items on table that I clicked. How can I make it? Best regards.Solved1.4KViews0likes10CommentsHandling multiple Fact Tables with different Aggregation
Dear Community, I have 2 dim and 2 fact tables with the following model: So the problem I get is in vizulising both fact values in one Visual without grouping (don't want to MAX or SUM the BookingDate or costs). Here the Name "abc" should get 30 sales and three different costs and the other Names ("def" and "ghi") should get 30 and 15 sales and no costs (tables on the right). But as you can see the Visual showing all the values of both fact tables without any relationship (table in the middle): I would expect this: Does somebody has any Idea? Thanks in advance!541Views0likes1CommentA fact table getting info from dimension table and fact table then grouping & distinct count
Hi , My scenario is 2 fact tables (point & trans) connecting to a dimension table (profile) point table is filtered by calendar table (e.g. 3-Aug-2023 to 4-Aug-2023), there are 124 members with this date selection a. getting the regist date of these 124 members from profile table b. getting the last order date from trans for these 124 members from trans table 1. when regist date of member >= 3-Aug-2023, would call this member group as Group A and get the distinct count of the members 2. when regist date of member < 3-Aug-2023 and last order date >= 3-Aug-2022, would call this membes group as Group B and get the distinct count of the members 3. when regist date of member < 3-Aug-2023 and last order date < 3-Aug-2022, would call this member group as Group C and get the distinct count of the members 4. when regist date of member < 3-Aug-2023 and last order date is null, would call this member group as Group D and get the distinct count of the members have written 2 measures [_Last_Order_Date], [_Last Order Date (for points member)] about this, but not sure how to proceed for [_Historical Purchase Group Count] have uploaded pbix file to onedrive , could anybody help to get this work? fact-bridge-fact.pbix1.7KViews0likes11Comments