The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I need to add a Index-ID column for same set of column values.
How to generate automated IDs? example below. Thanks.
Solved! Go to Solution.
Hi @Anonymous
A solution totally in Power Query, download this PBIX file for the code :
1. Add an Index Column from 1
2. Add a Custom Column with this code
= Table.AddColumn(#"Added Index", "ID", each Number.RoundUp([Index]/3,0))
3.Remove the Index Column
You can easily modify this code. For example if you have repeated groups of 5 words, just change the 3 in Step 2 above to 5 i.e.
= Table.AddColumn(#"Added Index", "ID", each Number.RoundUp([Index]/5,0))
Here's the full exampe code or download this PBIX file
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45Wcs/PT1GK1YlWcixLLUpMTwWznRIhYrSQjAUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Status = _t]),
#"Added Index" = Table.AddIndexColumn(Source, "Index", 1, 1, Int64.Type),
#"Added Custom" = Table.AddColumn(#"Added Index", "ID", each Number.RoundUp([Index]/3,0)),
#"Removed Columns" = Table.RemoveColumns(#"Added Custom",{"Index"}),
#"Changed Type" = Table.TransformColumnTypes(#"Removed Columns",{{"ID", Int64.Type}})
in
#"Changed Type"
Regards
Phil
Proud to be a Super User!
Hi @Anonymous
A solution totally in Power Query, download this PBIX file for the code :
1. Add an Index Column from 1
2. Add a Custom Column with this code
= Table.AddColumn(#"Added Index", "ID", each Number.RoundUp([Index]/3,0))
3.Remove the Index Column
You can easily modify this code. For example if you have repeated groups of 5 words, just change the 3 in Step 2 above to 5 i.e.
= Table.AddColumn(#"Added Index", "ID", each Number.RoundUp([Index]/5,0))
Here's the full exampe code or download this PBIX file
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45Wcs/PT1GK1YlWcixLLUpMTwWznRIhYrSQjAUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Status = _t]),
#"Added Index" = Table.AddIndexColumn(Source, "Index", 1, 1, Int64.Type),
#"Added Custom" = Table.AddColumn(#"Added Index", "ID", each Number.RoundUp([Index]/3,0)),
#"Removed Columns" = Table.RemoveColumns(#"Added Custom",{"Index"}),
#"Changed Type" = Table.TransformColumnTypes(#"Removed Columns",{{"ID", Int64.Type}})
in
#"Changed Type"
Regards
Phil
Proud to be a Super User!
You can try it by adding an Index column using Power Query
and create a calculated column like this.
Group Status = CALCULATE(COUNTROWS('Table'),FILTER(ALLEXCEPT('Table','Table'[Status]),'Table'[Index]<=EARLIER('Table'[Index])))
Proud to be a Super User!
Hi,
Thanks for your quick reply.
I got struck with only Earlier func, pls see the below screenshot.
Looks like you are creating a measure. You should create a Calculated Column
Proud to be a Super User!
Hi,
I got result but Id started with some randam numbers.
I need Index number from "1". Thanks so far your help.
Sorry to truble you alot.
My Original Data looks like below.
Are you creating Index Column from Power Query?
Is your segmentation also included dates?
Can you please share some sample data along with your table structure and desired output?
Proud to be a Super User!
@Anonymous , Add an index column in power query and then add this new column in dax
https://stackoverflow.com/questions/45715963/creating-an-index-column-for-power-bi
Countx(filter(Table, [status] =earlier([status]) && [index] <= earlier([index])),[index])
Hi,
Thanks for your quick reply.
I get error in Earlier Func.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
108 | |
76 | |
66 | |
52 | |
50 |
User | Count |
---|---|
121 | |
118 | |
77 | |
64 | |
63 |