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 am creating a financial report based on a tabular cube and I am having a problem trying to extract the last Rate of a specific Instrument before the user selected period (<= Period).
I have the following tables:
- RatingAssignment : this fact tables contains the link between the Instrument (SyId) and the Rate (RatingId) for all the days
- FactInstrument: it contains the Return values for each Instrument
- Instrument: dimension table of the instrument
What I need to create is a bar chat with the Return values by Rating
In order to get the correct Rates for the selected period, I built the following Calculated Column in the Instrument Table
=CALCULATE(
VALUES(RatingAssignment [RatingId]);
TOPN(1;
CALCULATETABLE(
FILTER(RatingAssignment;RatingAssignment[RatingId]<>Blank());
FILTER(ALL (TIME[Date] );TIME[Date]<=MAX(TIME[Date]))
);
RatingAssignment [Date];DESC)
)
The Calculated column retrieves the Rating but does not consider the User Selected Period.
Anyone could you help me to understand how to filter this calculated column for the specific period?
Thanks you very much for your help!
Solved! Go to Solution.
Values in a calculated column are fixed. They are an immutable result for each row in the table. You'll need to create a measure.
Values in a calculated column are fixed. They are an immutable result for each row in the table. You'll need to create a measure.
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 |
|---|---|
| 52 | |
| 51 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |