cancel
Showing results for 
Search instead for 
Did you mean: 
marcpaige
Astronaut
Status: New

I have come across some interesting reports that show this kind of combination. The Sankey is after the final column and shows the breakdown of the makeup of that final column (like a stacked column only just for the last column and not a column.) I have attached an example from a report I get daily.

marcpaige_0-1687213806133.png

 

12 Comments
JoeM
Community Manager
Community Manager

In the view above, the source has a text label of '2023', but I was able to remove it just now with a formula like:

case(
	Combo.Sheet1.Year = 2023, 
	' ', 
	string(
		Combo.Sheet1.Year
	)
)

JoeM_0-1687530432579.png

Here's a quick peek at the sample data I'm using:

JoeM_1-1687530545999.png

 

 

 

 

marcpaige
Astronaut

@JoeM, thanks! That is very nice.