% Complete or Visual Slider?

Hi,
I have an app that tracks the status of orders, basically an order has certain steps:

  1. Order Placed
  2. In Queue
  3. Assembling
  4. QC-check
  5. Packaging
  6. Shipping
    I currently have it set so that each time a new line is created the only available action is to โ€œmove it to the next stepโ€ and then it will log the date it was moved to the next step.
    I was wondering if there is a more โ€œvisualโ€ way to do this, (I was thinking of a slider with different positions) or maybe a table or chart where as the order progresses you can see a bar filling up or something thats not just a list of numbers.

Thereโ€™s two things here that I want to elaborate on:

  • Is there a way to assign a value to each of the steps? I can imagine doing a chart but I want to make sure Order Placed has a value of 1, how can I set this?

  • When I display these as a list, how can I order them in the step without showing the number, how can I make the list put โ€œOrder Placedโ€ at the top before โ€œAssemblingโ€ (which would be the descending, alphabetical order)

0 3 274
  • UX
3 REPLIES 3

Steve
Platinum 4
Platinum 4

If I recall correctly, you can use an Enum column, define these steps as values of the column, and assign an order to them. That ordering will be honored in views if you sort by the Enum column. Iโ€™m not sure what effect this would have on a chart, but it might be worth trying! Let us know!

You could make a new table like this:
2X_3_3f5978ea68aa693204db823cc5cf9ae311eba8f0.png
Where Number is the key, and Step is the label.

Then change your Enum column to a Ref column pointing at this new table. The Steps should be listed in the proper order by default this way, or you could make it explicit by setting Valid_if to something like:

ORDERBY( newtable[Number] , [Number] )

Now, since the Ref column actually holds the key value (Number), you can set your โ€œNext Stepโ€ action to increment that column by 1.

As far as displaying a percentage completed, we can start by creating a new Percent-type column, with a formula like:

[Step] / MAX( newtable[Number] )

And here is a cool way to visually display percentage values:

Steve
Platinum 4
Platinum 4
Top Labels in this Space