Chart Looks at Different Data Set - Table

Hi Guys

Really strange this one.

I have a slice "InvoicedThisMonth" which is based on the table "qryInvoicedMinusCredits".

MM_Group_0-1679933869244.png

 

I'm creating a chart UX and changing the display name to: "Sales Total: " & SUM([TotalInvoiced])

The Expression Assistant cannot find the column [TotalInvoiced]. So if I look in the 'Columns' assistant the columns available in there are from a totally different table and not from the Slice.

I've double checked the UX 'For This Data' and everything is correct selected.

MM_Group_0-1679932437571.png

Expression Assistant Below, these Columns are not from the 'InvoicedThisMonth' slice ??

MM_Group_0-1679932575723.png

 

 

 

Solved Solved
0 4 224
1 ACCEPTED SOLUTION

Thanks @Marc_Dillon very interesting.

But I'm not sure how I would apply that to this: (IGNORE ME)

"Sales Total: " & SUM(InvoicedThisMonthLessCredits[TotalInvoiced])

"Sales Total £: " & (ROUND(SUM(InvoicedThisMonthLessCredits[TotalInvoiced])*100)/100.0)

Many Thanks

 

View solution in original post

4 REPLIES 4

Marc_Dillon_0-1679975107716.png

 

.

Ok I got it, I don't need the espression assistant, just add the text:

"Sales Total: " & SUM(InvoicedThisMonthLessCredits[TotalInvoiced])

Into the Display Name field. So can the above be formatted to be Currency?

MM_Group_0-1679998351106.png

 

formatted to be Currency


Not really, but you can manually do it.

"$" & (ROUND(SUM(...)*100)/100.0)

https://www.googlecloudcommunity.com/gc/Tips-Tricks/How-to-ROUND-to-whatever-interval-you-want/m-p/4...

Thanks @Marc_Dillon very interesting.

But I'm not sure how I would apply that to this: (IGNORE ME)

"Sales Total: " & SUM(InvoicedThisMonthLessCredits[TotalInvoiced])

"Sales Total £: " & (ROUND(SUM(InvoicedThisMonthLessCredits[TotalInvoiced])*100)/100.0)

Many Thanks

 

Top Labels in this Space