Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Table 1 (left) is Filtered by "Invoice Date"
Table 2 (right) is Filtered by "Book Date"
I need the record count (a measure) of Table 2 to show up in Table 1 WITHOUT interfereing with the "Total Fare Currency" value of Table 1
Solved! Go to Solution.
Hi @Effimero89 ,
If you mean for the Invoice Date slicer, set the interaction to none in the Table2, and the same for Book Date.
Then you want the Record Count in Table1 show the value same with in Table2. I don't think it's possible, because for Table1, it can use the REMOVEFILTERS function to remove the Invoice Date slicer, but as the Book Date slicer can't interactive with Table1, all columns or measures in Table1 "don't know" what is selected in the Book Date slicer, then it can't show the same value as Record Count in Table2 which is filtered by Book Date.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Effimero89 ,
Is your problem solved? If so, would you mind accept the helpful replies as solutions? Then we are able to close the thread. More people who have the same requirment will find the solution quickly and benefit here, thank you!
Best Regards,
Community Support Team _ kalyj
Hi @Effimero89 ,
If you mean for the Invoice Date slicer, set the interaction to none in the Table2, and the same for Book Date.
Then you want the Record Count in Table1 show the value same with in Table2. I don't think it's possible, because for Table1, it can use the REMOVEFILTERS function to remove the Invoice Date slicer, but as the Book Date slicer can't interactive with Table1, all columns or measures in Table1 "don't know" what is selected in the Book Date slicer, then it can't show the same value as Record Count in Table2 which is filtered by Book Date.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Not quite sure what you need. try something like this
Record Count(M)=calculate(countrows(table_records),all(Dim_Invoice Date), all(dim_fare currency))
Hi @Effimero89
I think you should have a date table that have relationships connected to both date columns in your fact table. One of them will have to inactive. This way you can easily activate a deactivate any of these relationships whenever you want. However, it seems you are connecting eas table to only one of the two slicers which makes it almost impossible. The following has limited chances to work but you may try it
Record Count New =
IF (
SELECTEDVALUE ( TableName[Country Name] = "Angula" ),
CALCULATE (
[Recors Count],
REMOVEFILTERS ( TableName[Invoice Date] ),
VALUES ( TableName[Book Date] )
),
[Recors Count]
)
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 |
|---|---|
| 53 | |
| 35 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 38 | |
| 35 | |
| 25 |