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
NickProp28
Post Partisan
Post Partisan

LOOKUPVALUE

Dear Community, 

 

As I have two tables, DB and ActualProfit, I would like to look up the sum of DB table based on month and year into ActualProfit table, but Do not replace the numbers in Actual Profit that are already filled up.

 

NickProp28_0-1653368655779.png

This is Actual Profit table.

 

NickProp28_1-1653368684346.png

This is DB table.

 

I would like to sum the value of months February and March in the DB table then look into the Actual Profit table.
Knowing that this code can look up the total profit, but will replace the actual profit that has been filled

lookup = CALCULATE(SUM('DB'[Profit]),FILTER('DB','DB'[Month]= ActualProfit[Month] && 'DB'[Year] = ActualProfit[Year] ))

NickProp28_3-1653369558278.png

 

Expectation: 

NickProp28_2-1653369269995.png

Any help will be greatly appreciated.

Attached with the pbix: https://drive.google.com/file/d/1x-snBm9WxQl8esw8Mz1AB4JekGj41Za5/view?usp=sharing

 

1 ACCEPTED SOLUTION
PC2790
Community Champion
Community Champion

Hey @NickProp28 ,

 

You can try something like this:

lookup = if(ActualProfit[Profit]<> BLANK(),ActualProfit[Profit],CALCULATE(SUM('DB'[Profit]),FILTER('DB','DB'[Month]= ActualProfit[Month] && 'DB'[Year] = ActualProfit[Year] )))

This will create a new column taking values from the Profit if they are already there and if not, it will do the calculation and fill the result. The outcome will be as:

PC2790_0-1653371610184.png

Will this solve the purpose?

View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

It is for creating a new column.

 

Untitled.png

 

lookup =
VAR _condition =
    ISBLANK ( ActualProfit[Profit] )
RETURN
    CALCULATE (
        SUM ( 'DB'[Profit] ),
        FILTER (
            'DB',
            'DB'[Month] = ActualProfit[Month]
                && 'DB'[Year] = ActualProfit[Year]
        )
    ) * _condition + ActualProfit[Profit]

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


PC2790
Community Champion
Community Champion

Hey @NickProp28 ,

 

You can try something like this:

lookup = if(ActualProfit[Profit]<> BLANK(),ActualProfit[Profit],CALCULATE(SUM('DB'[Profit]),FILTER('DB','DB'[Month]= ActualProfit[Month] && 'DB'[Year] = ActualProfit[Year] )))

This will create a new column taking values from the Profit if they are already there and if not, it will do the calculation and fill the result. The outcome will be as:

PC2790_0-1653371610184.png

Will this solve the purpose?

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.