Forum Discussion
Filtering by whether Image Exists or Not
- 6 years ago
Hi Revokez ,
We can add a custom in power query editor to identify if this url is valid:
let ContentType = Binary.InferContentType(Web.Contents([Address]))[Content.Type], t = Table.RemoveRowsWithErrors(#table({"Type"} ,{{if Text.Contains(ContentType,"image") then 1 else null}} )), RemoveNull = Table.SelectRows(t,each not List.IsEmpty(List.RemoveMatchingItems(Record.FieldValues(_), {"", null}))) in not Table.IsEmpty(RemoveNull)Then you can use it in any filter you want.
If you are using the local file address, try to use the File.Content instead of Web.Content
Best regards,
Hi Revokez ,
You can simply deselect it from Filter Pane. I tried to replica your scenario and removed the broken icon image using Filter Pane. (Attached screen shot below for your reference)
Please give Kudos to this efforts and accept this as a solution if it helps!
Thanks - I have tried this however it doesn't work unfortunately due to the large quantity of broken images. Ideally if there was a way to 'group' the broken images and exclude them that way.
Example screenshot of the column that shows multiple broken images.
- Tahreem246 years agoSuper User
Hi Revokez ,
I understand you requirement. What I suggest you to deselect the broken image value from Filter Pane. I do also have a multiple broken image and I applied this filter so got what you wanted to achieve. (Screen Shot attached Below)
- Revokez6 years agoFrequent Visitor
Hi Tahreem24 - I think the difference between my example and yours is that in mine, the broken images are all different URLs and so they don't all group together for filtering. Here's a screenshot of the filtering in my example:
- Tahreem246 years agoSuper UserCan you share the url of your broken image? If possible so.