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

The ultimate Microsoft Fabric, Power BI, Azure AI & SQL learning event! Join us in Las Vegas from March 26-28, 2024. Use code MSCUST for a $100 discount. Register Now

Reply
Mahi1827
Resolver I
Resolver I

How to replace empty cells to zero (0) in matrix column values using direct mode.

i am using direct query, 2 columns product service, product status and below is sample data


product service, product status
phase 1               open
phase 2               started
phase 3                waiting
phase 4                comlpleted

 

when i use this data into matrix i got below view, assume there are 30 open rows for phase 1,20 started rows for phase 2, 10 waiting rows for phase 3
and 05 completed rows for phase 4 then my matrix shows like below

 

product statusop    open, started, waiting , comlpleted
product service 
phase1                   30
phase 2                                25
phase 3                                                 20
phase 4                                                                 05


in above matrix view i am getting empty values when there is no prodcuts compare with other phases, here i would like to show 0
when there is no prodcuts assigned or there is no data (null or blank)

 

in matrix rows are product service
columns are product status
values are count(product service)

 

my expected output like below
product status open started waiting comlpleted
product service
phase 1             30        0          0               0
phase 2              0        25         0                0
phase 3              0        0          10               0
phase 4              0        0            0             0
phase 4             0         0            0             05

 

i have tried with checking by isblank() like below
emptystatus= var test=calculate(count(table[product status])) return if(emptystatus= blank(),0,emptystatus)

and tried with diffrent options but still i am unable to show 0 where there is no data associated when the data is transorm into matrix.

 

Please look into this and provide your inputs. Thank you

 

Thank you

Mahi1827

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Mahi1827 ,

I had a look at your file and have updated the file as you require.

Download the file here

 

Appreciate your kudo!! Mark this post as solution if this works for you.

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

This can  e achieved by adding +0. A sample dax is below, create something like this

Measure Value = CALCULATE([Measure]+0,'Table'[Column] in DISTINCT('Column'[Column]))

 

Appreciate your kudos.

Mark my post as solution if this helps.

Hi NikhilKumar,

Thank you for your response and time

 

Actually i have tried with given logic but its look like still am getting blank instead of 0.
here is my updated dax.

Measure Value = CALCULATE([Measure]+0,'Table'[Column] in DISTINCT('Column'[Column]))


statuscount=CALCULATE(count(table(productservice)+0,'Table'[product service] in DISTINCT('Table[[product service]))

here is how the data look like for some example

 

product status product service
open                 phase1
open                 phase1
open                  phase1
completed         phase 2
completed          phase 2
completed          phase 2
completed          phase 2

 

after adding data into matrix :

Product status         open    completed
product service
phase1                      3
phase2                                      4

 

in above example i would like show 0 when there is no data associated with rows and columns

my expected output like below:


Product status           open          completed
product service
phase1                       3                      0
phase2                       0                      4

 

rows iam using as product service , columns using as Product status and values given as count(product service)
here to avoid blanks i have used adding +0 in count(product service),tried with comparing length of the count and also tried with new logic suggested by you. but still iam not able to show 0 intstead of blank .

 

please check and suggest your ideas. Thank you.

 

Thanks,

Mahi 1827

Anonymous
Not applicable

Hi @Mahi1827 ,

 

If possible can you share pbix removing sensitive data or a sampke pbix?

 

Appreciate your kudos!! 

 

Hi Nikhil,

 

Thanks for your time, please check the sample file below. I have tried with both measure and measure 2 but still i am not able to show 0 instead of blank vallues. 

 

https://1drv.ms/u/s!AlARJq6xd5KedVlP0zJpo2xgG_s?e=tR2Okt

 

Please share your ideas and solution. Thank you.

 

Thanks,

Mahi1827

Anonymous
Not applicable

Hi @Mahi1827 ,

I had a look at your file and have updated the file as you require.

Download the file here

 

Appreciate your kudo!! Mark this post as solution if this works for you.

Hi Nikhil,

 

This logic is working as expected.Thank you so much for your time and help on this.

 

Thanks,
Mahi

Helpful resources

Announcements
March Fabric Community Update

Fabric Community Update - March 2024

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

Fabric Community Conference

Microsoft Fabric Community Conference

Join us at our first-ever Microsoft Fabric Community Conference, March 26-28, 2024 in Las Vegas with 100+ sessions by community experts and Microsoft engineering.

Fabric Partner Community

Microsoft Fabric Partner Community

Engage with the Fabric engineering team, hear of product updates, business opportunities, and resources in the Fabric Partner Community.