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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
sajal161292
Helper V
Helper V

undefined

Hi,

 

 I have a visual which is displaying the same value of parts against all the suppliers in a matric visual.

 

Capture3.PNG

Upon selecting a site in another visual it should display the count againse each supplier which should vary accordingly.

Please help me in correcting it.

3 REPLIES 3
jthomson
Solution Sage
Solution Sage

This might be a relationship issue, or it might be an issue with the measure you're using to count the total parts - what does your data model look like and how are you calculating your values?

Hi,

 

The measure is:

 

Total Shortage Count = if(
COUNTROWS(
VALUES(Shortages[name])
) = 1,
[ShortageCount],
SUMX(
VALUES(Shortages[name]),
[ShortageCount]
)
)

 

ShortageCount =
var itemName = FIRSTNONBLANK(Shortages[name],Shortages[name])
RETURN
CALCULATE(
count(Shortages[item_segments]),
filter(Shortages,Shortages[Shortage day] = -1 &&
Shortages[name] = itemName

 

This is my model:


)Capture4.PNG

Hi sajal161292,

 

If my understanding is right, you want to achieve the aggregation value grouped by Supplier, right? You can create your measure in table 'Supplierdata' like pattern below and check if it can meet your requirement.

 

ShortageCount =
VAR itemName =
    FIRSTNONBLANK ( Shortages[name], Shortages[name] )
RETURN
    CALCULATE (
        COUNT ( Shortages[item_segments] ),
        FILTER (
            ALLEXCEPT ( Supplierdata, Supplierdata[SupplierName] ),
            Shortages[Shortage day] = -1
                && Shortages[name] = itemName
        )
    )

Hope it's helpful to you.

 

Jimmy Tao

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.