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
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
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.