Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
sirpentagon
Frequent Visitor

Split Tags based values

Hi, 

I am very new to PowerBI. I need help from the community.

I want to create a matrix to display Instances Details based on Tags value. The tags are created dynamically during the creation time of any instances.

 

My requirement is to filter out values based on the key-values tag, "CreatedBy", such that one can select either SuperAdmin or Admin or NormalUser to view the result. The value are not known initially. The no of records is more than 2.5-3 millions rows.

 

 

Example:

 

Tags

{“Name”:”Test”, “CreatedBy”:”SuperAdmin”}

{“Build”:”001”, “CreatedBy”:”SuperAdmin”}

{“Name”:”Test2”, “CreatedBy”:”NormalUser”}

{“Name”:”Test”, “CreatedBy”:”Admin”, “CreatedOn”:”02012020”}

1 ACCEPTED SOLUTION
Jimmy801
Community Champion
Community Champion

Hello @sirpentagon 

 

I don't know in witch format do you have this tags. I tried to find a solution if every tag is a row from a single-column table.

let
	Source = #table
	(
		{"Column1"},
		{
			{"{""Name"":""Test"", ""CreatedBy"":""SuperAdmin""}"},	{"{""Build"":""001"", ""CreatedBy"":""SuperAdmin""}"},	{"{""Name"":""Test2"", ""CreatedBy"":""NormalUser""}"},	
			{"{""Name"":""Test"", ""CreatedBy"":""Admin"", ""CreatedOn"":""02012020""}"}
		}
	),
	AddRecords = Table.AddColumn
	(
		Source,
		"Records",
		(add)=> 
		let 
			ReplaceData = Text.Remove(add[Column1], {"{", "}", """"}),
			SplitRecords = Text.Split(ReplaceData, ","),
			ToTable = Table.FromList(SplitRecords, Splitter.SplitByNothing(), {"Name"}),
			SplitColumn = Table.SplitColumn(ToTable, "Name", Splitter.SplitTextByDelimiter(":"), {"Name", "Value"}),
			ToRecords = Record.FromTable(SplitColumn),
			TabelToRecords = Table.FromRecords({ToRecords})


		in 
			TabelToRecords
	),
	Combine = Table.Combine
	(
		AddRecords[Records]
	)

in
    Combine

 

Copy paste this code to the advanced editor in a new blank query to see how the solution works. If this solution fits your need, copy and past a part of it and implement it in your query.

If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too

Have fun

Jimmy

 

View solution in original post

1 REPLY 1
Jimmy801
Community Champion
Community Champion

Hello @sirpentagon 

 

I don't know in witch format do you have this tags. I tried to find a solution if every tag is a row from a single-column table.

let
	Source = #table
	(
		{"Column1"},
		{
			{"{""Name"":""Test"", ""CreatedBy"":""SuperAdmin""}"},	{"{""Build"":""001"", ""CreatedBy"":""SuperAdmin""}"},	{"{""Name"":""Test2"", ""CreatedBy"":""NormalUser""}"},	
			{"{""Name"":""Test"", ""CreatedBy"":""Admin"", ""CreatedOn"":""02012020""}"}
		}
	),
	AddRecords = Table.AddColumn
	(
		Source,
		"Records",
		(add)=> 
		let 
			ReplaceData = Text.Remove(add[Column1], {"{", "}", """"}),
			SplitRecords = Text.Split(ReplaceData, ","),
			ToTable = Table.FromList(SplitRecords, Splitter.SplitByNothing(), {"Name"}),
			SplitColumn = Table.SplitColumn(ToTable, "Name", Splitter.SplitTextByDelimiter(":"), {"Name", "Value"}),
			ToRecords = Record.FromTable(SplitColumn),
			TabelToRecords = Table.FromRecords({ToRecords})


		in 
			TabelToRecords
	),
	Combine = Table.Combine
	(
		AddRecords[Records]
	)

in
    Combine

 

Copy paste this code to the advanced editor in a new blank query to see how the solution works. If this solution fits your need, copy and past a part of it and implement it in your query.

If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too

Have fun

Jimmy

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.