You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I want to export by board with a column for when a card was added, or created, or whatever it's called in the backend.
The only data available is last activity, which is useless for my purpose, which is to track how many cards we added this quarter. Is there a way to get this in an export? Thanks!
@Brendan Coon learned this recently. The first 8 characters of the card id can be used to get the card created date.
Card ID =left(B2,8) =hex2dec(C2) =D2/86400+DATE(1970,1,1)+time(5,30,0) 5f8959abd072dc81627034c3 5f8959ab 1602836907 10/16/2020 13:58:27
Nice! Super helpful information, thanks!
If someone wants the final formula, assuming Card ID is in cell A2:
=(HEX2DEC(LEFT(A2,8)))/86400+DATE(1970,1,1)+time(5,30,0)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.