gravanoc
Active Member
- Joined
- Oct 20, 2015
- Messages
- 340
- Office Version
- 365
- Platform
- Windows
- Mobile
I'm sure I've seen this somewhere, but my Google searches keep pulling the wrong results. Here's my formula:
Simply checks that the current time via NOW() is greater than some other time, and if so pulls the data from that table column, sorts it, and filters out any blanks or zeros. Preference is to do this without VBA.
Excel Formula:
=SORT(FILTER(IF(Dashboard!$B$3>Dashboard[Next Interest],Dashboard[Source.Name],""),(IF(Dashboard!$B$3>Dashboard[Next Interest],Dashboard[Source.Name],"")<>"")*(IF(Dashboard!$B$3>Dashboard[Next Interest],Dashboard[Source.Name],"")<>0)))
Simply checks that the current time via NOW() is greater than some other time, and if so pulls the data from that table column, sorts it, and filters out any blanks or zeros. Preference is to do this without VBA.