Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Looking for some inspiration please.
Within a Dataflow Query I want to group by NAME & Type and for the DATE column replace this with a list which in this example would hold two dates.
What I am trying to do is find where there are records missing (by Date) so I want to use the List.Differance to find these against a list of know dates so looking for a way to make the list for each distinct Name & Type combination.
Name | Type | DATE |
A | 1 | 01/01/2020 |
A | 1 | 08/01/2020 |
A | 2 | 01/01/2020 |
A | 2 | 08/01/2020 |
B | 1 | 01/01/2020 |
NAME | Type | Date |
A | 1 | list (01/01/2020, 08/01/2020) |
A | 2 | list (01/01/2020, 08/01/2020) |
B | 1 | list (01/01/2020) |
Thanks in advance.
Solved! Go to Solution.
OK -- figured it out
#"FTG Step 2: List Dates" = Table.Group(#"FTG Step 2: Make table unique",{"Name", "Type", },{"ActualDates" , each [#"Report Date - TEXT"] ,type list})
This gives you a list in each row.
Note: It needs to be a Text value so you can expand it later
OK -- figured it out
#"FTG Step 2: List Dates" = Table.Group(#"FTG Step 2: Make table unique",{"Name", "Type", },{"ActualDates" , each [#"Report Date - TEXT"] ,type list})
This gives you a list in each row.
Note: It needs to be a Text value so you can expand it later
@Anonymous ,
No very clear. Refer if this can help
https://docs.microsoft.com/en-us/dax/concatenatex-function-dax
Hi,
No concatenatex works across a row what I am looking to do is group a number of rows together like you would with Group By but instead of aggregating i want to create a list of these values.
It is also like pivoting but I don't want to create new columns I want a list of these values.
Regards
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
119 | |
75 | |
47 | |
44 | |
34 |
User | Count |
---|---|
179 | |
89 | |
69 | |
47 | |
47 |