Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I would like to format this card visualization which is a Dax formula :
I tried to use the number format in the column tools and it does not work:
it should ideally look like this :
Solved! Go to Solution.
@Garyhb Click on the measure and go to the ribbon and change the Format to "GENERAL" and use the comma.
If it automatically changes to a Decimal, then just go to the Visualizations pane and "Call Out Value" and put 0 in the "decimal" section.
Please give this a go.
If I have posted a response that resolves your question, please accept it as a solution to formally close the post.
Also, if you are as passionate about Power BI, DAX and data as I am, please feel free to reach out if you have any questions, queries, or if you simply want to connect and talk to another data geek!
Want to connect?www.linkedin.com/in/theoconias
@VahidDM Tried changing to "General" and the comma
it will revert back to it to whole number but it didn't change the data.
if it is sum of the data then there is no issue :
but i need to count the number of stocks and it seems if I count the number of stocks I can't display it as 3,110 :
Hi @VahidDM
Please download the pbix file : https://www.mediafire.com/file/s6rbjvj4cibkjjd/Example_1.pbix/file
set 0 decimal like image below:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hi @Garyhb
add #,##0;($#,##0) to your Format section.
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
maybe this:
Measure 2 =
Var _A =COUNTROWS('Table')*12323123 -- add your formula here
return
format(_A,"#,##0")
https://docs.microsoft.com/en-us/dax/format-function-dax
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Still can't :
Active SKU =
VAR _A= COUNTROWS(
FILTER(
RELATEDTABLE('Product'),OR('Product'[status]="active",'Product'[status]="")))
return
format(_A,"#,##0")
Hi @Garyhb
Are you wanting the measure to provide you with the answer 1,048,218? Or do you want the title on the card to go away? If it is the "Category Label" you want to disappear, just go to the Visualizations panel on the right and go to "Category Label" and switch it off 🙂
If I have posted a response that resolves your question, please accept it as a solution to formally close the post.
Also, if you are as passionate about Power BI, DAX and data as I am, please feel free to reach out if you have any questions, queries, or if you simply want to connect and talk to another data geek!
Want to connect?www.linkedin.com/in/theoconias
@Garyhb Click on the measure and go to the ribbon and change the Format to "GENERAL" and use the comma.
If it automatically changes to a Decimal, then just go to the Visualizations pane and "Call Out Value" and put 0 in the "decimal" section.
Please give this a go.
If I have posted a response that resolves your question, please accept it as a solution to formally close the post.
Also, if you are as passionate about Power BI, DAX and data as I am, please feel free to reach out if you have any questions, queries, or if you simply want to connect and talk to another data geek!
Want to connect?www.linkedin.com/in/theoconias
it works thanks 🙂
@Garyhb did you try the above?
If I have posted a response that resolves your question, please accept it as a solution to formally close the post.
Also, if you are as passionate about Power BI, DAX and data as I am, please feel free to reach out if you have any questions, queries, or if you simply want to connect and talk to another data geek!
Want to connect?www.linkedin.com/in/theoconias