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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
jileigh
Helper I
Helper I

How do I DAX a new table from the following:

Given the below, I would like the result to be two columns, with distinct contractnbrs in 1 column and the coresponding leasenumbers in another.  I only want one of each leasenumber, and no blanks.  I have tried groupby, but obviously don't know how to use it as it complains about the duplicate values in contractnbr.

 

jileigh_0-1698864093110.png

Thanks in advance for your help.

 

6 REPLIES 6
Dangar332
Super User
Super User

Hi, @jileigh 

try below code

 

Measure 3 = IF(
              ISINSCOPE(Table1[contractor]), 
               CONCATENATEX (
                  CALCULATETABLE ( VALUES ( Table1[leasenumber] ) ),
                  Table1[leasenumber],
                   ", " ,         
                  Table1[leasenumber] 
                 ,ASC              
                ),
                BLANK()
            )

 

Dangar332_0-1699351238342.png

 

Shalini_T
Frequent Visitor

@jileigh, Try this code in a calculated table,

New_Table = 
VAR _summarize = SUMMARIZE('Table','Table'[contractnbr],"leasenumber",MIN('Table'[leasenumber]))
RETURN _summarize

 

Shalini_T_0-1698866533961.png


Regards,
Shalini

It says the syntax for 'RETURN' is incorrect.

Also, need ALL the leasenumbers for each contractnbr.

tackytechtom
Super User
Super User

Hi @jileigh ,

 

How about this:

Table 2 = 
SUMMARIZE (
    'Table',
    'Table'[contractbr],
   "MaxLeaseNumber", MAX ( 'Table'[leasenumber] )
)

 

You might need to change the aggregate function to your needs (max, min etc.)

 

Let me know if this helps 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

No, I need all the distinct leasenumbers.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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