Forum Discussion

Matthew_BR's avatar
Matthew_BR
Frequent Visitor
3 years ago
Solved

Round a Number Based on a Columm

Hi, I have a spreadsheet with the names of the items, the package sizes and the demand for the item in the month. Each product can have different types of packaging.

 

I'm trying to create a column that looks at demand and approximates it to one of the package's capacity. Could you help me please?

 

Sorry if it gets a little abstract or weird, but I'm working on a bigger project but it's just that part that I don't know how to do. 

 

Thanks to anyone who will look into this!

 

ItemPackageDemandWhat I need the table to do
AAA102220
AAA20810
AAA303840
AAA402730
  • pls try this

    Column = 
     VAR t1 = [Demand]
     VAR m1 = MAXX(FILTER(ALL('Table'),'Table'[Package]<=t1),[Package])
     VAR m2 = MINX(FILTER(ALL('Table'),'Table'[Package]>=t1),[Package])
     VAR _Results = t1-m1 < m2-t1
     RETURN 
     IF(_Results,m1,m2)

3 Replies

  • pls try this

    Column = 
     VAR t1 = [Demand]
     VAR m1 = MAXX(FILTER(ALL('Table'),'Table'[Package]<=t1),[Package])
     VAR m2 = MINX(FILTER(ALL('Table'),'Table'[Package]>=t1),[Package])
     VAR _Results = t1-m1 < m2-t1
     RETURN 
     IF(_Results,m1,m2)

  • You can create one new column using demand column using following dax

     

    Column = ROUND('Table'[demand],-1)
     

     

     
    Hope this helps!