Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
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
I have used DAX code to use UNICHAR for showing Loss in financial data, but I am getting the above error. Please help (Note- I am using financial data by Power BI desktop)
Solved! Go to Solution.
@azeemkhalipha , As I suggested above, I created it as a measure and that seems to be working. Please find the file attached after signature.
@azeemkhalipha , As I suggested above, I created it as a measure and that seems to be working. Please find the file attached after signature.
@azeemkhalipha ,Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
@azeemkhalipha , Error is not clear.
But in case you are creating a color measure
if should if
if(sum(financials[profit]) <=0 , "Red", "Green")
Refer these blogs
https://exceleratorbi.com.au/conditional-formatting-using-icons-in-power-bi/
https://community.powerbi.com/t5/Desktop/FORMAT-icon-set-for-use-in-a-data-card/td-p/811692
https://radacad.com/dax-and-conditional-formatting-better-together-find-the-biggest-and-smallest-num...
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#color-by-color-values
The "Enterprise" row is showing twice when I add the DAX function. I want it to be in one row only with "red" remark
Download sample PBIX with this code and visual
As a Measure use this
Remark =
VAR _Red = UNICHAR(128308)
VAR _Green = UNICHAR(128994)
RETURN
IF(MAX('Financials'[Profit]) <= 0 , _Red, _Green)
Regards
Phil
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 | |
| 43 | |
| 39 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 30 | |
| 23 |