Forum Discussion
MartinBT
9 years agoFrequent Visitor
sumx filter
Hi PowerBI users, Im fairly new at PowerBI so I hope someone can help out abit. I have a dataset that contains the following columns: Hours Issue_key I want to create a ...
- 9 years ago
Hi MartinBT,
First create a new column
test = LEFT(Table1[issue key],2)then create a measure
Measure = SUMX(Table1,IF(Table1[test] <> "IW",(Table1[hours]),0))
Please see the attached snapshot
Thanks,
Himanshu
himanshu56
9 years agoResolver II
Hi MartinBT,
First create a new column
test = LEFT(Table1[issue key],2)
then create a measure
Measure = SUMX(Table1,IF(Table1[test] <> "IW",(Table1[hours]),0))
Please see the attached snapshot
Thanks,
Himanshu
MartinBT
9 years agoFrequent Visitor
Great solution himanshu56
Thanks for helping out, it works like a charm. I didnt think of extracting the IW first in a column.