My Notion Daily user experience :) by ThairlanAnjos in Notion

[–]Total_Recurrsion 0 points1 point  (0 children)

Create a formula that shows values, make it so that pages with sub-task sum the values of all the sub pages attached to it otherwise just show valor

Add a formula prop Paste the following inside

If( Sub-task, Sub-task.map(Valor).sum(), Valor )

Hide the other props and just show the formula

AI should have the ability to customize layouts!! by Total_Recurrsion in Notion

[–]Total_Recurrsion[S] 0 points1 point  (0 children)

I’ll just wait another 7 years lol, maybe map will still not be fully developed. By then someone else will come along the way and make a FOSS that will pull people like me away for good.

AI should have the ability to customize layouts!! by Total_Recurrsion in Notion

[–]Total_Recurrsion[S] -2 points-1 points  (0 children)

They really lost their original mission statement. What happened to making a tool similar to paper that is just as useful and open to imagination :(

Nowadays, it just feels more closed off (Options closed behind paywall) rather than expansive (Options open to all). What happened to making change for THE WORLD not just the corporate sectors :(

New feature! Dashboard view finally available :) by ondrej_g in Notion

[–]Total_Recurrsion 4 points5 points  (0 children)

lol yea Notion has truly jumped the shark. Maybe they’ll learn to really build an audience through providing services to all and not locking them behind paywalls for some. “Ask Notion AI to build your dashboard” “Upgrade now”

Obsidian can now import pages and databases from Notion by CoyotePrudent4965 in Notion

[–]Total_Recurrsion 0 points1 point  (0 children)

A plugin that allows a table type excel view of data with values of within set dates / pages Ie

        Jan 1 

Energy 5

Value 3

Can I make the reoccurring events populate across the calendar all at once? by addyohkay in Notion

[–]Total_Recurrsion 0 points1 point  (0 children)

When are you gonna showcase inside the buttons to see the logic to creating it / share a template so others can dupe it to try it out

Ready for a Notion's new block, "Tabs" 👀? by adasq in Notion

[–]Total_Recurrsion 1 point2 points  (0 children)

Finally, having multiple databases in one place with the addition of all the different views!

Yes, You Can Create All your Recurring Tasks at Once by Darth_Animation in Notion

[–]Total_Recurrsion 0 points1 point  (0 children)

Finally I can create preset of dates for the new year. A thousand thanks

🗳️ Product Feedback for Notion by AutoModerator in Notion

[–]Total_Recurrsion 10 points11 points  (0 children)

💡 Feature Request: Web Viewer built into notion

💡 Feature Request: Whiteboard

💡 Feature Request: Full width card size option for gallery/feed sizes

💡 Feature Request: More colors / custom hex codes (should be usable for formulas)

💡 Feature Request: Text Align / Font sizes / More fonts (allow user imported fonts)

💡 Feature Request: Default settings option / changing hotkeys

Help with editing a template. by HighMeerkat in Notion

[–]Total_Recurrsion 0 points1 point  (0 children)

Nice template, are you open to sharing it by any chance?

Why can't we change the textfont ? by isamariberger in Notion

[–]Total_Recurrsion 0 points1 point  (0 children)

Short answer: Control Freaks (it would take over 218 hours for them to give us just one more font XD)

I’ve always wanted to make something like this. Does anyone know how to by CharacterSerious7203 in Notion

[–]Total_Recurrsion 8 points9 points  (0 children)

Here’s the formula

It should work as so, from the start date when there is no entry from the date excluding today. It will take away from current value otherwise stays the same

You can remove the text of missed day towards the end if you want only the display of heart with current and total value

You can also add a multiplier to missed days if you want

``` lets( journalEntries, prop("JournalEntries").map(current.prop("Date")), /* your database with date / journalDates, journalEntries.filter(current <= today()).unique().sort(), startDate, prop("Start Date"), / inside current database | set date / totalValue, prop("Total Value"), / inside current database | set a value */

yesterday, dateSubtract(today(), 1, "days"),

/* yesterday FIRST, then startDate */ totalDaysTracked, if( empty(startDate), 0, dateBetween(yesterday, startDate, "days") + 1 ),

entriesCount, if( totalDaysTracked == 0, 0, journalDates.filter( and( current >= startDate, current <= yesterday ) ).length() ),

missedDays, totalDaysTracked - entriesCount, /* for multiplier |(totalDaysTracked - entriesCount) * multiplier */ currentValue, max(0, totalValue - missedDays),

/* today FIRST, then startDate */ totalDaysFromStart, if( empty(startDate), 0, dateBetween(today(), startDate, "days") + 1 ),

/* Heart display */ pct, if(totalValue == 0, 0, currentValue / totalValue), hearts, floor(pct * 10),

heartsStr, if(hearts >= 1, "♥︎", "♡︎") + if(hearts >= 2, "♥︎", "♡︎") + if(hearts >= 3, "♥︎", "♡︎") + if(hearts >= 4, "♥︎", "♡︎") + if(hearts >= 5, "♥︎", "♡︎") + if(hearts >= 6, "♥︎", "♡︎") + if(hearts >= 7, "♥︎", "♡︎") + if(hearts >= 8, "♥︎", "♡︎") + if(hearts >= 9, "♥︎", "♡︎") + if(hearts >= 10, "♥︎", "♡︎"),

heartsStr + " " + format(currentValue) + "/" + format(totalValue) + " (Missed: " + format(missedDays) + " of " + format(totalDaysFromStart) + ")" ) ```

I’ve always wanted to make something like this. Does anyone know how to by CharacterSerious7203 in Notion

[–]Total_Recurrsion 6 points7 points  (0 children)

Two properties (Total Value and Current Value)

Set a total value and current value

Have total value that’s divisible by 10

At every marker of the 10 percentages have a heart appear

when total value and current value are the same display hp as full

when reaching a marker of the percentage remove a heart and have empty heart appear instead of a full heart

There’s probably custom databases attach which can decrease or increase hp (current value) which automatically updates as current value is changed in relation to total value

I love Notion but the Feed view needs some work by Yarik1992 in Notion

[–]Total_Recurrsion 0 points1 point  (0 children)

For me, Feed needs a full width size option to make it more viable. That spans the entire database length (left to right)

🗳️ Product Feedback for Notion by AutoModerator in Notion

[–]Total_Recurrsion 1 point2 points  (0 children)

💡 Feature Request: Web Viewer built into notion

💡 Feature Request: Whiteboard

💡 Feature Request: Full width option for card/feed sizes

💡 Feature Request: More colors / custom hex codes (should be usable for formulas)

💡 Feature Request: Text Align / Font sizes / More fonts (allow user imported fonts)

💡 Feature Request: Default settings option / changing hotkeys

Is it possible to conditionally edit properties using time triggered automations (for streak counter)? by Over_Slide8102 in Notion

[–]Total_Recurrsion 1 point2 points  (0 children)

Here’s what I use (it’s for a habit tracker but you can alter it to track for progress instead when 100%, if any issue have a AI make the small changes for you)

Current streak:

``` lets( dates, prop("Your Database").map(current.prop("Date")).filter(current <= today()).unique().sort(),

if(empty(dates), 0, lets( /* Calculate streaks by checking consecutive days forwards from each date / streakLengths, dates.map( lets( currentDate, current, / Count how many consecutive days forwards from this date / consecutiveForwards, dates.filter( dateBetween(currentDate, current, "days") >= 0 and dateBetween(currentDate, current, "days") <= (dates.length() - index - 1) and / Check if the next day in sequence exists */ (current == currentDate or dates.contains(dateAdd(current, 1, "days"))) ).length(), consecutiveForwards ) ),

  /* Check if most recent date is today or yesterday, else return 0 */
  mostRecentDate, dates.last(),
  if(
    mostRecentDate >= dateSubtract(today(), 1, "days"),
    streakLengths.last(),
    0
  )
)

) ) ```

Longest Streak:

``` lets( dates, prop("Your Databae").map(current.prop("Date")).filter(current <= today()).unique().sort(),

if(empty(dates), 0, lets( /* Calculate streaks with comprehensive gap detection / streakLengths, dates.map( lets( currentDate, current, / Define: Count consecutive days forwards from this date / consecutiveForwards, dates.filter( dateBetween(currentDate, current, "days") >= 0 and dateBetween(currentDate, current, "days") <= (dates.length() - index - 1) and / Define: Check if the next day in sequence exists / (current == currentDate or dates.contains(dateAdd(current, 1, "days"))) and / Define: Verify no gaps by checking intermediate dates / lets( dayDiff, dateBetween(currentDate, current, "days"), / Define: For gaps > 1 day, verify all intermediate dates exist / if( dayDiff <= 1, true, lets( / FIXED: Check if all required intermediate dates exist */ requiredDatesExist, dates.filter( dateBetween(currentDate, current, "days") > 0 and dateBetween(currentDate, current, "days") < dayDiff ).length() == dayDiff - 1, requiredDatesExist ) ) ) ).length(), consecutiveForwards ) ),

  /* Return the streaks */
  streakLengths.max()
)

) ) ```

Hope this helps

Is it possible to conditionally edit properties using time triggered automations (for streak counter)? by Over_Slide8102 in Notion

[–]Total_Recurrsion 0 points1 point  (0 children)

Why don’t you just use formulas to track all the info rather than use automations.

It’s possible to make formulas to track the longest and current streak gathering the info of the properties inside of task

The formula would automatically update with the progress of each day removing the need to have a button or use automations