App Insight 查询以获取每个 ID 和类别映射的结果以及计数
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
这些是应用洞察事件,
我正在为每个 ID、类别和计数映射的 3 列中查找如下结果记录
ID - Category - count
11 - Q - 2
11 - R - 1
4 - Q - 1
6 - Q - 1
26 - R - 1
....
很高兴您已经清除了
根据您的建议将其作为答案发布,以帮助面临相同问题的其他社区成员。
还添加了一些 Microsoft docs 来为您提供有关语法的信息。
这是我们需要用来将 CustomDimensions 扩展到列中的语法。
mv-expand split(customDimensions_ID,',')
检查 mv-expand 运算符以获取更多信息。
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
这些是应用洞察事件, 我正在为每个 ID、类别和计数映射的 3 列中查找如下结果记录
ID - Category - count
11 - Q - 2
11 - R - 1
4 - Q - 1
6 - Q - 1
26 - R - 1
....
很高兴您已经清除了
根据您的建议将其作为答案发布,以帮助面临相同问题的其他社区成员。
还添加了一些 Microsoft docs 来为您提供有关语法的信息。
这是我们需要用来将 CustomDimensions 扩展到列中的语法。
mv-expand split(customDimensions_ID,',')
检查 mv-expand 运算符以获取更多信息。