Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hello Guys, need your help.
Imagine I have the following table, giving Bugs by date and if they are still open (not fixed) or not.
So in this table I want to exclude Bugs that were never opened, but for the ones opened, I want to see the row appearing when they were closed. were never had a value of Open = 1.
Thanks!
Solved! Go to Solution.
@Anonymous
Hi, you can do this in Query Editor:
One Way is this:
Regards
Victor
Lima - Peru
@Anonymous
Hi, you can do this in Query Editor:
One Way is this:
Regards
Victor
Lima - Peru
@Anonymous Table = CALCULATETABLE('Table', IsOpen = 1 )
unless i am missing something all you need to do is filter on isopen = 1
Proud to be a Super User!
Ups, I think I forgot to mention that I do not wish to lose the rows were they were closed.
That way those rows will be filtered out no ?
I want a table that will show me all rows for Bugs that were once open, but I want the row showing when they were closed.
So in this table I want to exclude Bugs that were never opened, but for the ones opened, I want to see the row appearing when they were closed.
Made a big fuss
@Anonymous
create a calculated column on the table
indicator= calculate(values[bug], open = 1)
then
newtable = CALCULATETABLE('Table', filter(table, indictator <> blank())
haven't tested it
Proud to be a Super User!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 68 | |
| 33 | |
| 31 | |
| 31 |