Notication on Hamburger Menu

Hi guys,

Not sure if anyone has requested this but,
a notification number on the hamburger menu sounds cool to me.

Say I have a table of Reported defects that needs fixing.

This can be easily viewed on the Hamburger Menu next to ‘Defects’:

Menu:

  1. About
  2. Feedback
  3. Defects (15)
  4. Inbox (3)
  5. Hazard Report (6)
    so on…

Thank you!

0 3 607
3 REPLIES 3

@Zikri_Zainal - just for clarification, are you looking to add some calculated number in the description of the hamburger menu item (eg: 1. Defects (15))?

If so, you can already do that by just adding a VC that contains your calculation, and then use a calculated Display Name for the view you are showing in the hamburger menu.

In my case it’s not a count, but I am showing the date of last data upload in the menu. You could show a count quite easily.
2X_6_682772c3da8113238eed3f50fccf3dff8ab522b2.png

formula example:

CONCATENATE("Last IPS import => ",
LOOKUP(“Date of last IPS data import”, “Show Last IPS Import Date”, “TOPIC”, “DESCRIPTION”))

Since my actual use case was a bit convoluted, the simpler example for your case (using a VC called DefectCount in the your DEFECTS table might be:

“Defects (” & [DefectCount] & “)”

Amazing, will give it a go.

Does it apply to unique users on how many defects that are assigned to them to be fixed?

It could, if you require user login to your app. Then you use a slice or create the Virtual Column formula with USEREMAIL() as a condition in the app formula. Depends a little on your case, but can be done.

For example, if you use a slice with USEREMAIL()=myemail@xxx.com, then the Display Name formula can just count the rows:

eg: COUNT(slicename[_ROWNUMBER])

note: as @Steve clarified for me, it’s better to directly calculate that count in the Display Name formula, then to use a VC that has to be calculated for each record before getting the total. So… if you can use COUNT, SUM, or even SELECT directly in the Display Name formula, it’s least “expensive” during sync. So try to avoid the VC if your case allows.

Top Labels in this Space