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
astrbac
Frequent Visitor

Combination Value.Divide() and Value.Add() returns all null results?

Hello,

 

as I came to grasp with M language basics, a strange problem started bugging me. Creating a simple custom column by adding two and dividing them by third.

 

This is what I usually do:

 

1. "Get&Transform" data from a .csv;

2. I sort my columns (fields);

3. I then add a few custom columns, usually very simply like [Column2] / [Column1];

4. I then tried this column which started making trouble:

 

= ([Website conversions value] + [#"Mobile app purchases value (corrected)"]) / [#"Amount spent (GBP)"]

This failed miserably. Returned a whole field of null values.

I triple checked - all three fields that I use in the formula have values.

 

I then learned a bit of M and tried this:

 

= Value.Divide( Value.Add( [Website conversions value], [#"Mobile app purchases value"]), [#"Amount spent (GBP)"])

Also no luck, all null values. Any idea what might be wrong?

 

Thanks all in advance!
Alex

 

3 REPLIES 3
v-yuta-msft
Community Support
Community Support

Hi astrbac,

 

What's your data type? Could you show some sample data?

 

Regards,

Jimmy Tao

Hi guys!

 

I don't even know how to share this dataset both with the model, except to share the real WOrkbook. I can't do that because there is client data in it.

 

If you mean "are the fields that I am adding and then dividing of the proper data type" BEFORE I use them in my calculation - the answer is yes.

 

- [Website purchases value] is imported from .csv and properly declared (automatically) as 1.2 (decimal number);

[Mobile purchases value] is imported from .csv and properly declared (automatically) as 1.2 (decimal number);

 

My first calculation of correcting [Mobile purchases value] works.

 

= if List.Contains({"iPhone", "iPad", "iPod"}, [Impression Device]) then ([Mobile app purchases conversion value]/2) else [Mobile app purchases conversion value]

After this step, I change the type of this new column to decimal number.

 

Now I try to use this new column in the second calculation, as in my post above, both of the fields in question have been declared as decimal number, and it simply does not work.

 

 

Before thi check if all the columns is type as number. (in the column head you may see something like 123 or 1.2)

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.