Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi, I have this kind of table which includes € column (kauppasumma) and date column (Date) and then I have a date slider where I pick start date and end date.
(Date column is related with Date table)
I'm calculating ratio and this function works fine:
But problem is that this function counts all values but doesn't notice my date slider. I would like to count January's ratio but how do I do it?
Thank you!
Solved! Go to Solution.
HI @jussiwaisto ,
So you mean you want to use current value to compare with selected values? If this is a case, you can consider using 'allselected' function to replace 'all' function, it will filtered your records based on current filters.
Ratio =
DIVIDE (
SUM ( Table[Amount] ),
CALCULATE ( SUM ( Table[Amount] ), ALLSELECTED ( Table ) )
)
Regards,
Xiaoxin Sheng
HI @jussiwaisto ,
So you mean you want to use current value to compare with selected values? If this is a case, you can consider using 'allselected' function to replace 'all' function, it will filtered your records based on current filters.
Ratio =
DIVIDE (
SUM ( Table[Amount] ),
CALCULATE ( SUM ( Table[Amount] ), ALLSELECTED ( Table ) )
)
Regards,
Xiaoxin Sheng
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 59 | |
| 42 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 109 | |
| 102 | |
| 39 | |
| 29 | |
| 29 |