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
ChoiJunghoon
Helper III
Helper III

[Q] Dax Create new table via using DAX

Create new table.png

I want to create new table (blue).

NewTable =
Var x1=Selectedvalue(TableA[Value])

RETURN
SUMMARIZE
            (TableA, TableA[ID],"TYPE",
                                                CALCULATE(LASTNONBLANK(TableA[TYPE],1),FILTER(TableA,TableA[Value]=x1)
))

Could you please save me !! 

1 ACCEPTED SOLUTION
mahoneypat
Employee
Employee

Are you trying to write a measure that will give your result in a table visual?  Or a DAX Calculated Table?  You've written a measure that uses a selectedvalue() which would not work for a calculated table.  If you want a calculated table, you could just use the Return part of your measure (with "=1", not "=x1", i assume that is a typo).

 

If this works for you, please mark it as solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

You may download my PBI file from here.

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
mahoneypat
Employee
Employee

Are you trying to write a measure that will give your result in a table visual?  Or a DAX Calculated Table?  You've written a measure that uses a selectedvalue() which would not work for a calculated table.  If you want a calculated table, you could just use the Return part of your measure (with "=1", not "=x1", i assume that is a typo).

 

If this works for you, please mark it as solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Thank you! you are right

 
NewTable =
SUMMARIZE(TableA,TableA[ID],"TYPE",CALCULATE(LASTNONBLANK(TableA[Type],1),FILTER(TableA,TableA[Value]=MaX(TableA[Value]))))

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.