custom formatting
2 TopicsCustom Icons within Dax Measure returning Text.
Hi, I am working on a report for accessing information about uploaded documents (via MS Forms). I created a measure, that depending on the row level, will either give us the name of the file with a conditional icon (they are added to the json theme) that reflects that file's extension, or a Sharepoint Icon, and a count of different files + Count of file types. This is the measure: Document Title* = VAR _List = CALCULATE(CONCATENATEX(DISTINCT('fact_OfficeForms Table'[Extension]), 'fact_OfficeForms Table'[Extension],", ")) VAR _FileTypeCount = DISTINCTCOUNTNOBLANK('fact_OfficeForms Table'[Extension]) VAR _Result = IF( HASONEVALUE('fact_OfficeForms Table'[ID]), SELECTEDVALUE('fact_OfficeForms Table'[Document Title]), IF( COUNT('fact_OfficeForms Table'[ID])=0, BLANK(), DISTINCTCOUNTNOBLANK('fact_OfficeForms Table'[ID])&" documents uploaded. "& _FileTypeCount& " file type(s) : " & _List ) ) RETURN _Result In the case where there are multiple files in the row level context, instead of simply listing the file type extensions I would like to list the icons, like this: But I don't know if it is possible to use Icons that way, in text (not in conditional formatting). Any help would be much appreciated! Best regards, Mike.2KViews1like3CommentsCustomizing tool tip for table value
Hello! Upon reading the forum and watching many tutorial videos, I haven't seen any examples for tool tips related to table filtering. I would like to hover over a table value, and have a tool tip to display information tied to that specific value. Currently, I have a tool tip page, tool tips turned on for the page and tool tip table but when I hover over the value on my main page, it shows the entire tool tip page rather than filtering the table based on what value I am hovering over. Given the example below, if I hover over '1', I'd like for the tool tip to only display '1''s from column 1 and the corresponding column 2 values. Main page Column 1 1 2 3 4 Tool tip page Column 1 Column 2 1 89 1 93 1 46 1 57 2 65 2 89 3 93 3 46 4 57 4 65 Desired outcome Tool Tip Page Column 2 1 89 1 93 1 46 1 57Solved3.8KViews0likes6Comments