Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
WHY my first message has been Marked as spam!? It's not...
Please help me
I have a set of bookmark & table & line chart.
And the bookmark 'Korea' include the table selected first row '삼성전자'(Samsung Electronics)
I have a set of bookmark & table & line chart.
And the bookmark 'Korea' include the table selected first row '삼성전자'(Samsung Electronics)
I wanted to use the stock name 삼성전자(Samsung Electronics) as a filter in the line chart below, but the right columns, 76,400 (price) and +0.79 (daily return), are all filtered as well.
The values in the table change every day. I want only the stock name to be filtered on the line chart, but the problem is that the three values on the right, not the stock name, are also filtered. Because of this issue, no line chart is drawn on the line chart below after the daily value update.
Like below.
The explanation was long. In summary, what I'm curious about is how to exclude unwanted columns when filtering by rows in a table, or how to use only the values of one desired column as a filter.
Solved! Go to Solution.
Hi @Hyunbin
My suggestion is to replace the “price” "daily return" fields in your table visual with measures like the following:
Latest Price = CALCULATE(
MAX('DataTable'[Price]),
FILTER(
'DataTable',
'DataTable'[Date] = MAX('DataTable'[Date])
)
)
Using original “price ”field from your data table in a line chart.
This way, the “price” and “daily return” columns will not be affected when filtering with “Stock Name” in the table visual.
Best Regards,
Jarvis Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Hyunbin
My suggestion is to replace the “price” "daily return" fields in your table visual with measures like the following:
Latest Price = CALCULATE(
MAX('DataTable'[Price]),
FILTER(
'DataTable',
'DataTable'[Date] = MAX('DataTable'[Date])
)
)
Using original “price ”field from your data table in a line chart.
This way, the “price” and “daily return” columns will not be affected when filtering with “Stock Name” in the table visual.
Best Regards,
Jarvis Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
58 | |
55 | |
55 | |
38 | |
29 |
User | Count |
---|---|
78 | |
62 | |
45 | |
40 | |
40 |