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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Alex31010
New Member

How to effectively vizualize binary information?

Hi everyone,

 

I'm working on a dataset where I have project numbers associated with binary information about technologies (there's a bunch of them),

1 if the project contains a technology ;

0 if not.

 

Is there a way to effectively vizualise this type of information? I cannot really have a column stating what the technology is because some of the time a project is associated with more than one technology.

 

Maybe by modifying the source dataset? Or by another trick in PBI that I don't know?

 

The only thing I manged to do what this: Here

The modified version of my dataset: Here

 

Thanks in advance,

 

Alexis

1 ACCEPTED SOLUTION
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Alex31010 ,

I'm a little confused about your requirement. 

Do you want to show the count of 0 and 1 for each category?

Capture.PNG

If it is, you could try this below.

1. Unpivot other columns in query editor.

2. Create the two measures.

count of 0 =
CALCULATE (
    COUNT ( 'PME selon champs tech'[Value] ),
    FILTER (
        ALLEXCEPT ( 'PME selon champs tech', 'PME selon champs tech'[cate] ),
        'PME selon champs tech'[Value] = "0"
    )
)
count of 1 =
CALCULATE (
    COUNT ( 'PME selon champs tech'[Value] ),
    FILTER (
        ALLEXCEPT ( 'PME selon champs tech', 'PME selon champs tech'[cate] ),
        'PME selon champs tech'[Value] = "1"
    )
)

More details, you could refer to my attachement.

If you still need help, please share your desired output so that we could help further on it.

Best  Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Alex31010 ,

Have you solved the problem?

If you have solved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.

If you still need help, please share your data sample and your desired output.

Best  Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Alex31010 ,

I'm a little confused about your requirement. 

Do you want to show the count of 0 and 1 for each category?

Capture.PNG

If it is, you could try this below.

1. Unpivot other columns in query editor.

2. Create the two measures.

count of 0 =
CALCULATE (
    COUNT ( 'PME selon champs tech'[Value] ),
    FILTER (
        ALLEXCEPT ( 'PME selon champs tech', 'PME selon champs tech'[cate] ),
        'PME selon champs tech'[Value] = "0"
    )
)
count of 1 =
CALCULATE (
    COUNT ( 'PME selon champs tech'[Value] ),
    FILTER (
        ALLEXCEPT ( 'PME selon champs tech', 'PME selon champs tech'[cate] ),
        'PME selon champs tech'[Value] = "1"
    )
)

More details, you could refer to my attachement.

If you still need help, please share your desired output so that we could help further on it.

Best  Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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