Forum Discussion
markjdm_17
6 years agoNew Member
Generate Series Based on Table (2 Columns)
Hi Team, I am looking at generating a series of columns based on a table as per below. Table: Trading Name Open Date End Date Centre 1 2/05/2020 2/08/2020 Centre 2 24/08/202...
- 6 years ago
Thanks for all the responses. I was able to figure this out by just generating the series with the above dax query I mentioned. I then just created a rank column to get the sequence of dates.
Rank =VAR D = 'Result Table'[Value]VAR C = 'Result Table'[Label]RETURNCALCULATE(RANK.EQ(D, 'Result Table'[Value], ASC),FILTER(ALL('Result Table'), 'Result Table'[Label] = C))
Greg_Deckler
Community Champion
6 years agomarkjdm_17 - If I am understanding this correctly, try this:
New Table =
SELECTCOLUMNS(
FILTER(
GENERATE(
'Table',
ADDCOLUMNS(
GENERATESERIES(MIN('Table'[Open Date]), MIN('Table'[End Date]), 1),
"Month",MONTH([Value])
)
),
[Value] >= [Open Date]
&& [Value] <= [End Date]
),
"Label", [Trading Name],
"Value", [Value]
)