Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
missigno
New Member

Select a column of a FILTER result

 

So, I have these tables:

 

THPayments : [id, SK_DATE, amount, reference, currency_id]

DimCurrencies: [id, name ]

DimCurrenciesRates: [id,currency_id,SK_DATE,conversion_date]

 

THPayments[currency_id] is related to DimCurrencies[id]

DimCurrenciesRates[currency_id] is related to DimCurrencies[id] 

 

I want to get the Conversion_rate for the Date of my payment with the actual currency id.

 

Explained in SQL woulb be like:

 

SELECT conversion_rate FROM DimCurrenciesRates

WHERE 

conversion_rate.SK_DATE = THPayments.SK_DATE

and

conversion_rate.currency_id = THPayments.currency_id

 

 

The best I could do was, on the THPayments table, create a calculated column with:

 

=FILTER(DimCurrenciesRates;DimCurrenciesRates[SK_DATE] =[SK_DATE] && [currency_id] = DimCurrenciesRates[currency_id])

 

This effectibly returns the row i want, but, its a full row, i just need the "conversion_rate" value. Of course the error is:

 

"The expression refers to multiple columns. multiple columns cannot be converted to a scalar value"

 

How could I do this? Thanks! 

1 ACCEPTED SOLUTION
missigno
New Member

GOT IT!

 

I just had to SUMMARIZE the FILTER result:

 

=SUMMARIZE(

FILTER(DimCurrenciesRates;DimCurrenciesRates[SK_DATE] =[SK_DATE] && [currency_id] = DimCurrenciesRates[currency_id]);

DimCurrenciesRates[conversion_rate] )

 

Thanks!

View solution in original post

1 REPLY 1
missigno
New Member

GOT IT!

 

I just had to SUMMARIZE the FILTER result:

 

=SUMMARIZE(

FILTER(DimCurrenciesRates;DimCurrenciesRates[SK_DATE] =[SK_DATE] && [currency_id] = DimCurrenciesRates[currency_id]);

DimCurrenciesRates[conversion_rate] )

 

Thanks!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors