The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi @dhanureddy9 ,
You can create a calculated column as below in the table "Tab_calls":
Column =
VAR _target =
CALCULATE ( MIN ( 'Tab_Targets'[TARGET] ), 'Tab_Targets'[METRIC] = "AHT" )
RETURN
'Tab_calls'[CALLS] * _target
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Hi @dhanureddy9 ,
You can create a calculated column as below in the table "Tab_calls":
Column =
VAR _target =
CALCULATE ( MIN ( 'Tab_Targets'[TARGET] ), 'Tab_Targets'[METRIC] = "AHT" )
RETURN
'Tab_calls'[CALLS] * _target
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Hi,
without more information of the data I think you should look into using the LOOKUPVALUE function to create a new column with the targets in it. That is assuming that there is a relationship between the tables? From there on, it is a matter of creater either a measure or another column with multiplication.
https://docs.microsoft.com/sv-se/dax/lookupvalue-function-dax