We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register 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).
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 38 | |
| 33 | |
| 17 | |
| 17 |
| User | Count |
|---|---|
| 67 | |
| 63 | |
| 38 | |
| 34 | |
| 22 |