Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Let's say I have a data like this:
A table with "wave" column which has a unique numerical value.
Using the table above, the goal is to generate a table like below:
Basically, to generate 4 records consist of decremental values for each "wave" value:
ex.
72 = 69 to 72
73 = 70 to 73
74 = 71 to 74
Is it possible to achieve this using DAX?
Thanks in advance!
Solved! Go to Solution.
Create the new table like this:
TableNew =
GENERATE (
TableQ,
GENERATESERIES(TableQ[Column1] - 3, TableQ[Column1],1) )
You can create a new table like
new table =
SELECTCOLUMNS(
GENERATE( 'wave', GENERATESERIES( 'wave'[wave] - 3, 'wave'[wave], 1 ) ),
"wave", 'wave'[wave],
"wave_coverage", [Value]
)
Create the new table like this:
TableNew =
GENERATE (
TableQ,
GENERATESERIES(TableQ[Column1] - 3, TableQ[Column1],1) )
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 21 | |
| 20 | |
| 12 |
| User | Count |
|---|---|
| 58 | |
| 55 | |
| 42 | |
| 36 | |
| 35 |