'App insight query to get result for each id and category mapping with number of count
Event 1
Custom Event
Prop1- abc
customDimensions
ID - [4,6,11] //multiple id’s
Category- Q //can be one of P,Q,R,S
Event 2
Custom Event
Prop1- abc
customDimensions
ID - [10,11,25,2] //multiple id’s
Category- Q //can be one of P,Q,R,S
Event 3
Custom Event
Prop1- abc
customDimensions
ID - [11,9,26,8] //multiple id’s
Category- R //can be one of P,Q,R,S
These are application insight events, I'm looking for result records as below in 3 columns mapped for each ID, Category, and count
ID - Category - count
11 - Q - 2
11 - R - 1
4 - Q - 1
6 - Q - 1
26 - R - 1
....
Solution 1:[1]
Glad that you have cleared the issue
Based on your suggestions posting that as an answer to help the other community members who are facing with the same issue.
Also adding few more Microsoft docs which gives you information about syntax.
Here is the syntax which we need to use to expand the CustomDimensions into columns.
mv-expand split(customDimensions_ID,',')
Check mv-expand operator for more information.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | RajkumarPalnati-MT |