Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hey
I have extracted the table below using the formular stated below, because I want to use the table as a visual;
Active Ticket Table = CALCULATETABLE(Tickets,Tickets[value.statecode@OData.Community.Display.V1.FormattedValue]="Active")
As seen in the table there are duplicate data in the Value.TicketNumber, ProjectName & StatusCode, which I could have used remove duplicate data to remove. However, the RequestType column has distinct request Types.
Value.TicketNumber | ProjectName | RequestType | StatusCode | StateCode |
2023-IDM-0000001 | Phone Case | Builder's linen | Pending Assignment | Active |
2023-IDM-0000002 | Project Spinoff | W&D of ODRW | Awaiting Documents | Active |
2023-IDM-0000003 | DRW-0128YNS | Coperate Search | Merging | Active |
2023-IDM-0000003 | DRW-0128YNS | Easement Access | Merging | Active |
2023-IDM-0000003 | DRW-0128YNS | Builder's linen | Merging | Active |
2023-IDM-0000004 | YU-Jason Project | Easement Access | Pending Assignment | Active |
2023-IDM-0000005 | MP-927-2023 | Encroachment | Awaiting Documents | Active |
2023-IDM-0000006 | 719-YUGNT-2022 | Builder's linen | Merging | Active |
2023-IDM-0000007 | 2023-Builders Project | City-to-City General | Awaiting Documents | Active |
2023-IDM-0000007 | 2023-Builders Project | Encroachment | Awaiting Documents | Active |
2023-IDM-0000008 | Aspen Woods Project 2021 | Ground Tie | Merging | Active |
2023-IDM-0000008 | Aspen Woods Project 2021 | City-to-City General | Merging | Active |
2023-IDM-0000009 | Alpine Grounding | Builder's linen | Pending Assignment | Active |
2023-IDM-0000010 | Brent Jdrainage | Encroachment | Pending Assignment | Active |
2023-IDM-0000011 | Ground Opening Project | W&D of ODRW | Pending Assignment | Active |
2023-IDM-0000012 | City-to-City Drone | W&D of ODRW | Merging | Active |
2023-IDM-0000012 | City-to-City Drone | Coperate Search | Merging | Active |
2023-IDM-0000012 | City-to-City Drone | Easement Access | Merging | Active |
Whih formula can i use to make the Active intakes table appear as seen below please either in the visual or in the table
Value.TicketNumber | ProjectName | RequestType | StatusCode | StateCode |
2023-IDM-0000001 | Phone Case | Builder's linen | Pending Assignment | Active |
2023-IDM-0000002 | Project Spinoff | W&D of ODRW | Awaiting Documents | Active |
2023-IDM-0000003 | DRW-0128YNS | Coperate Search, Easement Access, Builder's linen | Merging | Active |
2023-IDM-0000004 | YU-Jason Project | Easement Access | Pending Assignment | Active |
2023-IDM-0000005 | MP-927-2023 | Encroachment | Awaiting Documents | Active |
2023-IDM-0000006 | 719-YUGNT-2022 | Builder's linen | Merging | Active |
2023-IDM-0000007 | 2023-Builders Project | City-to-City General, Encroachment | Awaiting Documents | Active |
2023-IDM-0000008 | Aspen Woods Project 2021 | Ground Tie, City-to-City General | Merging | Active |
2023-IDM-0000009 | Alpine Grounding | Builder's linen | Pending Assignment | Active |
2023-IDM-0000010 | Brent Jdrainage | Encroachment | Pending Assignment | Active |
2023-IDM-0000011 | Ground Opening Project | W&D of ODRW | Pending Assignment | Active |
2023-IDM-0000012 | City-to-City Drone | W&D of ODRW, Coperate Search, Easement Access | Merging | Active |
Thank you in advance for your help
Solved! Go to Solution.
I used the response in this link and it worked
Solved: Re: Combining Rows based on the ID of that table - Power Platform Community (microsoft.com)
I used the response in this link and it worked
Solved: Re: Combining Rows based on the ID of that table - Power Platform Community (microsoft.com)
@Anonymous your reply didn't help? How I will know what is not working? Are you getting the wrong result or blank or error? How I expect to provide the answer without knowing what is not working?
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@Anonymous add a measure for Request Type and then use this measure in the table visual along with other columns:
Request Type =
CONCATENATEX ( FILTER ( 'Table', 'Table'[StateCode] = "Active" ), [RequestType], ",")
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Thanks but this did not work. I would expect that the formula would use the ticket number as a distinct identifier to concatenate the Request Types. Please can you provide another formula
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
80 | |
76 | |
60 | |
36 | |
33 |
User | Count |
---|---|
91 | |
60 | |
59 | |
49 | |
45 |