Forum Discussion
Nightlight
8 years agoNew Member
IF+COUNTIF in POWERBI
Actually, I have met a problem about how to filter the special column by criterias.In Exccel,if+Countifs is easy. City Transportation Metro? Beijing Air ...
Zubair_Muhammad
Community Champion
8 years ago
Hi
You can use this calculated column in Power BI
Column =
CONTAINS (
FILTER ( Table1, Table1[City] = EARLIER ( Table1[City] ) ),
[Transportation], "Metro"
)