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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

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.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

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.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.