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
Anonymous
Not applicable

How to put a measure into a table

Good afternoon

 

I have a table called MyTSR, which has two columns. TSR and MYAILabel. 

 

I need to create a table with the rows associated with MyTSR[TSR] and three columns with individual measures, called last 7 days, last 7 days positive, and Long Trend. 

I have tried to use summarize and calculated tables, however, I think i am getting this wrong.

 

The table should look like

 

MyTSR7DayCount7DaysPositiveLongTrend
Atext based on Last 7 daystext based on last 7 days positiveText based on Long trend
Bas aboveas aboveas above
Cas aboveas aboveas above

 

This is my dax code that i know i am butchering

 

MyTSRTable =
SUMMARIZE (
'TSRTable',
"ID", 'MyTSR'[TSR],
"7DayCount", [Last 7 Days],
"7DayPositive", [Last 7 Days Positive],
"LongTrend", [Long Trend]
)

 

Please can you give me some pointers as to how to do this properly?

 

The values are stored in a table as I have a table that I am using as a reference, and i need to do an AND calculation per row.

 

I hope that this helps you to help me with this.

 

I look forward to and will be grateful for any assistance

 

Lola

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I am not sure how your datamodel looks like, but please try something like below.

 

MyTSRTable =
ADDCOLUMNS (
    VALUES ( 'MyTSR'[TSR] ),
    "7DayCount", [Last 7 Days],
    "7DayPositive", [Last 7 Days Positive],
    "LongTrend", [Long Trend]
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@Jihwan_Kim Thank you for this solution. It does work as required and I am grateful for your response. Have an amazing day.

 

Lola

Jihwan_Kim
Super User
Super User

Hi,

I am not sure how your datamodel looks like, but please try something like below.

 

MyTSRTable =
ADDCOLUMNS (
    VALUES ( 'MyTSR'[TSR] ),
    "7DayCount", [Last 7 Days],
    "7DayPositive", [Last 7 Days Positive],
    "LongTrend", [Long Trend]
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


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.