Forum Discussion

korencheva's avatar
korencheva
New Member
4 years ago
Solved

Dax query

Hello!

Can you please tell me where the error is? How do I get this command to work? I have to express the unit per case 

 

(Sheet1[unit per case]]) := DIVIDE ( Sheet1[Volume in unit cases]] ), ( Sheet1[Full Delivered margin]] )
 
Thank you in advance!
  • Hi,

    If you are looking for creating a new column, please try the below or similar to the below.

    It is for creating a new column.

     

    unit per case CC =
    DIVIDE ( Sheet1[Volume in unit cases], Sheet1[Full Delivered margin] )
    

1 Reply

  • Hi,

    If you are looking for creating a new column, please try the below or similar to the below.

    It is for creating a new column.

     

    unit per case CC =
    DIVIDE ( Sheet1[Volume in unit cases], Sheet1[Full Delivered margin] )