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
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).
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 17 | |
| 11 |
| User | Count |
|---|---|
| 55 | |
| 53 | |
| 43 | |
| 36 | |
| 32 |