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 nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hi all
I am unfamiliar with SQL script and have a set of data where the following has been used "
@row_number := CASE
WHEN @prev_id = t1.id THEN @row_number + 1
Add an Index Column:
Add a Custom Column for Row Number:
= Table.AddColumn(PreviousStep, "RowNumber", each if [ID] = try PreviousStep{[Index]-2}[ID] otherwise null then [Index] - try PreviousStep{[Index]-2}[Index] otherwise 1)
= Table.Group(PreviousStep, {"ID"}, {{"MaxCount", each List.Max([RowNumber]), type number}})
= Table.Join(MainQuery, "ID", AggregatedData, "ID")
= Table.AddColumn(PreviousStep, "FinalMinutes", each [Minutes] / [MaxCount])
@row_number := CASE
WHEN @prev_id = t1.id THEN @row_number + 1
Please provide the entire SQL - missing the ELSE and END statements.
AS max_counts ON J1.ID = max_counts.ID;
That is some rather advanced SQL. Can you confirm that this runs in SSMS?
I would not be surprised if things like
...
@row_number := CASE
WHEN @prev_id = t1.id THEN @row_number + 1
ELSE 1
END AS `COUNT`,
@prev_id := t1.id
...
would not be supported in Power Query's SQL connector (unless you declare it as Value.NativeQuery maybe).
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 |
|---|---|
| 23 | |
| 23 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 51 | |
| 40 | |
| 30 | |
| 24 |