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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Nun
Resolver I
Resolver I

Get the name of customers from a count of customers in a category

Hello,

 

I have a table

Category Count of customer in the category Total sale

1               2                                                      5000

2               3                                                      7000  

3               5                                                      10000

Count of customer and total sales are formulas (which contain the filter of categories). Category is a table with only those categories. There is a table with customer name (A,B,C,D,E,F,G,H,I,L) and sale for each customer.

How can I get a table where instead to have the count , I ahve the name of the customer)

So 

Category    count   Total sale

1                 2          5000

 A

 B

2               3          7000

 C

 D

 F

Thanks in advance!

2 REPLIES 2
mh2587
Super User
Super User

//Create Table and Try this
CustFromCountCategory =
UNION(
    SELECTCOLUMNS('Category', "Category", 'Category'[Category], "Count", 'Category'[Count], "Total Sale", 'Category'[Total Sale]),
    SELECTCOLUMNS(
        FILTER('Sales', 'Sales'[Category] = EARLIER('Category'[Category])),
        "Customer", 'Sales'[CustomerName]
    )
)

Did I answer your question? If so, please mark my post as a solution!


Proud to be a Super User!




LinkedIn Icon
Muhammad Hasnain



Hello,

thanks for the quick response.

I try to explain it better

I have two table

Table 1 

Customer  Sales

A               1000

B                2000

C               1500

.....

Table 2

Category

1

2

3

4

Now to count how many customers fall in category 1,2,..., I created a formula: "count of customer", to know the total sales fall in category 1,2,,,I created a formula.

In practice these is not a field category in Table1 as well there is not a field count or total sales in Table 2

Thanks!

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.