Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I need some assistance creating a measure to calculate YTD Time-Weighted Return ("TWR")
To simplify as much as possible, the user will be able to filter by any number of months in the year but will always choose contiguous months and will always start with Jan.
Ex. Jan
or Jan & Feb
or Jan & Feb & Mar, etc.....so YTD.
I have "Return" as a measure that is correctly calculating at a per month basis.
I need the time-weighted return ("TWR") to calculate through the max month selected.
In the example below,
if the user selected Jan, Feb, Mar, the TWR = 4.34%
if the user selected Jan, Feb, Mar, Apr, May, the TWR = 3.14%
Any update on this?
add colnum
Return+1 =[return]+1
Measure:
var maxMonth = max([month/year])
return
calculate(
product([return+1]),
Filter(ALL/ALLSELECTED([month/year]),[month/year]<=maxMonth)
)
-1
Your measure will not work as is since "Product" requires a column.
"Return" is not a column in my dataset. The key identifies it as a measure and it needs to stay as such.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
29 | |
11 | |
11 | |
10 | |
6 |