Forum Discussion
Number Overlap in Beyondsoft Calendar Visual
Hello,
I am trying to display the number of orders that came in every day of the current/last month using the Beyondsoft calendar visual from the marketplace. These are the inputs that I am using:
Date Field: Received_Date
Measure Data: Distinct Count of OrderID
Relative Filter on Received_Date: Last 30 Days
Here is a snapshot of the problem that I am facing:
Can anyone please help me with this? Is there anything that I am doing wrong? Or is there any other visual that I can use to depict the same data?
Thank you,
Richa
Hello Anonymous
The measure you are displaying, [Distinct Count of OrderID], does it combine together two amounts? I was messing the the visual making a measure to display [Sales Amount] and [Sales Last Year]
Overlap = [Sales Amount] & [Sales Last Year]
In the visual the numbers run over each other.
If I force a line break into the measure though I can get them to stack.
Overlap = [Sales Amount] & " " & [Sales Last Year]
The trick is to put and ALT + Enter in between the "" in the measure
2 Replies
- jdbuchanan71Super User
Hello Anonymous
The measure you are displaying, [Distinct Count of OrderID], does it combine together two amounts? I was messing the the visual making a measure to display [Sales Amount] and [Sales Last Year]
Overlap = [Sales Amount] & [Sales Last Year]
In the visual the numbers run over each other.
If I force a line break into the measure though I can get them to stack.
Overlap = [Sales Amount] & " " & [Sales Last Year]
The trick is to put and ALT + Enter in between the "" in the measure
- AnonymousNot applicable
Hi jdbuchanan71
Thank you so much! My Received Date column had both the date and the time in it, so I guess in a way it was trying to combine two values. I split the column and the overlapping issue was solved.
Thank you so much :)