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 want to search for first 5 letters of a given 20-30 letters string, if it matches then calculate the sales for those 5 letters how can I write this DAX measure?
Solved! Go to Solution.
@Anonymous @az38 Thanks for your answers but the below DAX helped me to get to what I required:
try the below:
@Anonymous @az38 Thanks for your answers but the below DAX helped me to get to what I required:
Hi @Anmolgan
see the LEFT function https://docs.microsoft.com/en-us/dax/left-function-dax
so, try something like this
=calculate(sum(Table[Sales]);Table[ColumnSearch]='abcdef')
do not hesitate to give a kudo to useful posts and mark solutions as solution