Skip to content
Advertisement

Use a calculated column value to look up a specific value from the same source table

I have a table in SQL Server called ShippingDocSummary which contains all historical records for shipping documents. For a given document number, there can be any number of historical records/transactions. What I am trying to do is create a view that summarizes that table and calculates various column values. My issue comes when trying to get a specific value from the source table based on a calculated column value from the same source table.

Here is a simplified example of what the source table looks like:

My code to create my summary so far is as follows:

This gives me the following, which is correct:

What I am trying to get next, as a column, is the StatusDate that correlates to the LastAS_DHID value that was calculated from the select (i.e. I need the next column to show ‘5/5/2020’ since that date ties to the DocHistID ‘10000004’).

In Power Bi, I’d use a lookupvalue function, but as I transfer my logic to the SQL server, I think I need to use a derived CASE WHEN type of query, but unsure of how to structure the syntax. Any help is greatly appreciated!

Advertisement

Answer

Maybe you have to create your on table and then do a left join. This being said, Try this:

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement