The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I have a table that contains different files such as pdf, image, web URL, etc... in SQL server. I am tring to display all files as an image just like SQL image viewer. Anyone has any idea how?
Solved! Go to Solution.
@Edwin5454 , images can shown if they are the URL.
Or based on the type of file you can show an image
Switch(True(),
search("pdf", [filename],,0) >0, "url/pdficon.png",
//add others
)
@Edwin5454 , images can shown if they are the URL.
Or based on the type of file you can show an image
Switch(True(),
search("pdf", [filename],,0) >0, "url/pdficon.png",
//add others
)
User | Count |
---|---|
80 | |
78 | |
37 | |
34 | |
31 |
User | Count |
---|---|
93 | |
81 | |
60 | |
49 | |
49 |