Forum Discussion
cheid_4838
1 year agoHelper IV
Filter function is not filtering
I have a table that contains invoice level information. This table is connected to three lookup tables (Division, Date, driver, and tractor). Not very complex. My goal for one of my visuals is to sh...
- 1 year ago
Hi,
Does this measure work?
_Spend = CALCULATE([Fuel Spend],'EFS Transaction Report'[all_fuel_line_item_discount]=0)If not, then share the download link of the PBi file and show the problem there very clearly.
AlexisOlson
1 year agoSuper User
Does it make a difference if you filter just the column rather than the whole table?
No Rebate Fuel Spend =
VAR _Spend =
CALCULATE (
[Fuel Spend],
FILTER (
VALUES ( 'EFS Transaction Report'[all_fuel_line_item_discount] ),
'EFS Transaction Report'[all_fuel_line_item_discount] = 0
)
)
RETURN
IF ( ISBLANK ( _Spend ), 0, _Spend )