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
estewart
New Member

Lookup values (or other method?) from same table

I am trying to create a new column that assigns trend "start date" to trend "data value". See table below. Columns in gray are what I have currently. Col A has two variable types "Trend_x" which is the data value and Trend_x_Start" which is the start date. YearQuarter represents different quarterly forecasts. Value contains either the data value or the trend start date (e.g. YYYY.Q format).

 

Trend start date is not consistent across all (a) Trend_x and (b) YearQuarter combinations.

 

I am trying to create the column in green at the query or table level using DAX. So far I haven't been able to get it to work.

 

Any help is appreciated. Thank you.

 

Capture.PNG

 

 

1 ACCEPTED SOLUTION
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @estewart ,

 

Sorry for the delay.

 

For your sceanrio, you could try the steps below.

 

1. Go to Query editor and duplicate the original table and filter rows with Variable.

 

filter rows.PNG

 

2. Apply and Close , create a calcualted column in table 2 with the formula below.

 

 

Column = IF('Table2'[Variable] = "Trend_1_Start",1,2)

3.  Create two calculated columns in Table.

 

Column = IF('Table1'[Variable] in {"Trend_1","Trend_1_Start"},1,2)
Column 2 =
LOOKUPVALUE (
    'Table2'[Value],
    'Table2'[YearQuarter], 'Table1'[YearQuarter],
    Table2[Column], 'Table1'[Column]
)

Here is the output.

 

Capture.PNG

 

More details please refer to my attachment.

 

Best  Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @estewart ,

 

Sorry for the delay.

 

For your sceanrio, you could try the steps below.

 

1. Go to Query editor and duplicate the original table and filter rows with Variable.

 

filter rows.PNG

 

2. Apply and Close , create a calcualted column in table 2 with the formula below.

 

 

Column = IF('Table2'[Variable] = "Trend_1_Start",1,2)

3.  Create two calculated columns in Table.

 

Column = IF('Table1'[Variable] in {"Trend_1","Trend_1_Start"},1,2)
Column 2 =
LOOKUPVALUE (
    'Table2'[Value],
    'Table2'[YearQuarter], 'Table1'[YearQuarter],
    Table2[Column], 'Table1'[Column]
)

Here is the output.

 

Capture.PNG

 

More details please refer to my attachment.

 

Best  Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.