This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hello Community,
NB: Dates it's a measure !
So I thought to convert the Measure 'dates' into column first !
Any Ideas ?
This is my measure :
dates =
VAR str = SELECTCOLUMNS(BTA_Output,"d",BTA_Output[Maturite])&"-"&[MR/365]
VAR _date =
FORMAT (SELECTCOLUMNS(BTA_Output,"d",BTA_Output[Maturite]), "yyyy/mm/dd" )
VAR _num =
[MR/365]
VAR _cal =
"-"
VAR tmp =
FILTER (
ALL ( 'Date' ),
YEAR ( [Date] )
> YEAR ( _date ) - _num
&& YEAR ( [Date] ) < YEAR ( _date )
&& MONTH ( [Date] ) = MONTH ( _date )
&& DAY ( [Date] ) = DAY ( _date )
)
VAR _a =
CONCATENATEX ( tmp, [Date], "
" )
RETURN
SWITCH ( TRUE (), _cal = "-", _a )Output:
Thanks !
I don't know what it is you want... but this code
FILTER (
ALL ( 'Date' ),
YEAR ( [Date] )
> YEAR ( _date ) - _num
&& YEAR ( [Date] ) < YEAR ( _date )
&& MONTH ( [Date] ) = MONTH ( _date )
&& DAY ( [Date] ) = DAY ( _date )
)
will most likely break on leap years... since February has variable number of days, not always the same.
By the way, measures are dynamic and react to selections. Columns are always static, so I don't quite get how you want to make a measure into a column...
Hi @daXtreme,
Thank you for answer.
- don't worry about the measure it works fine for me. But my probleme is i want to duplicate rows by Code_ISIN for each dates knowing that dates it's a measure.
- I want each date in a row with the same Code_ISIN !
Thanks.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 25 | |
| 23 | |
| 19 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 25 | |
| 24 | |
| 20 | |
| 19 | |
| 19 |