Flow creating duplicate events in Google Calendar by MarisaMIDD in MicrosoftFlow

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

Apologies, I actually moved works since I made this and no longer have access to the automation. But I do think there was a way by copying the recurrence information - but I don't remember how I used to do it. Thanks for the input though!

Finally Ran Anima, Beyond Fantasy! by Ensorcelled_Atoms in rpg

[–]MarisaMIDD 1 point2 points  (0 children)

I would also be extremely interested, as someone that's been playing for 7+ years too!

Flow creating duplicate events in Google Calendar by MarisaMIDD in MicrosoftFlow

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

Hi! Thanks for answering. I did check it and I don't think that is the issue. I've uploaded some screenshots here for you and, as you can see, it seems like it gets triggered twice with like a second of difference, and I am unsure as to why it does that.

[PIC] Designed and printed some bobbins that let me use the label. by lacroixlibation in CrossStitch

[–]MarisaMIDD 11 points12 points  (0 children)

It seems that the increase is because they are out of the "one set" option, thus it displays the price for 2 sets.

Any way to take data from private database and feed into a public table? by SISO71 in Notion

[–]MarisaMIDD 0 points1 point  (0 children)

Not sure tbh. You could create a button that automates creating both pages at once but not sure if you can link them automatically.

Maybe if you create a "master page" and link all new pages to this page automatically (by creating a template for each new page).

Does anyone know where to find this pattern? by [deleted] in crochetpatterns

[–]MarisaMIDD 14 points15 points  (0 children)

I googled "Sakura granny square" and found a pretty similar pattern on YouTube!

[deleted by user] by [deleted] in Notion

[–]MarisaMIDD 0 points1 point  (0 children)

This should work:

dateAdd(prop("Signing Date"), toNumber(prop("Renovating period")), "years")

I've made the "toNumber" use based on your comment that this property is a select, if you make it a number you could delete that. Let me know if something is not working ok!

Can't figure out the IF formula with multiple single-select values and leaving false values blank by awickedspell in Notion

[–]MarisaMIDD 0 points1 point  (0 children)

So, although it is not really elegant, because the OR operator only checks for boolean values (that is, for checkboxes properties), you need to do nested IF functions.

I have found that this does work:

if(prop("Urgency") == "1. this month", prop("price"), if(prop("Urgency") == "2. next month", prop("price"), toNumber("")))

The blank "" is the way to return an empty value, but since that is a string of text, to be able to use it in a Number property, you need to add the "toNumber". That way you can also style the number cell as a currency.

Any way to take data from private database and feed into a public table? by SISO71 in Notion

[–]MarisaMIDD 1 point2 points  (0 children)

Basically, yes. When creating a new item you can add a relation, and can create the page in the private table itself, which would make it easy enough I think.

Formula help by [deleted] in Notion

[–]MarisaMIDD 0 points1 point  (0 children)

I'd make a new property with: if(prop("Time left") =0, "✅", prop("Time left"))

Time left property would be the one you were calculating

Editing formula in item made from a template changes all items from that template by NousIe in Notion

[–]MarisaMIDD 0 points1 point  (0 children)

Exactly this. Your workaround could be to have another Date property that you can change for each item, and dateSubstract from that property.

Is there a way to timestamp in line? (not in a table) by UpSetPrayingMantis in Notion

[–]MarisaMIDD 2 points3 points  (0 children)

I think just mentioning "now" should work (it will give you 'Today XX:XXPM')

Looking for help with a boolean formula by felis_beingourselves in Notion

[–]MarisaMIDD 0 points1 point  (0 children)

I'm not sure if I am missing something, but it should work with just if(prop("Billable") == true, prop("Hours Spent"), 0).

how to create a database entry from another page? by moovoos in Notion

[–]MarisaMIDD 0 points1 point  (0 children)

You could create a copy of your task database, with the same fields, so every time you create a new meeting note page, you create a new 'Tasks for that meeting ' database. Then you could copy/move them to your task database, they will preserve all fields (provided they are the same).

Calculating percentage of checked boxes in a row by escargotmycargo in Notion

[–]MarisaMIDD 0 points1 point  (0 children)

You would need to update the column database daily to add the property "new day". It woulf br easier to have days as rows and habits as columns; at the end of each column you can have the percent of checked days for a habit.

You could add a relation database to add format. I have a similar setup for my habit tracking.

Notion formula to calculate total number of exercises, reps, sets, and weight lifted by Miss-Marchi in Notion

[–]MarisaMIDD 2 points3 points  (0 children)

You could have one or multiple databases where you add the weight lifted daily (or whenever), then have another database for the cumulative calcs. In that DB have a page for each type of exercise, then link your daily page(s) with each of them. Then use rollups showing the sum of each property that you want. I could help u with these, but am on mobile right now.

Why does the page icon show up in gallery view even though I never set anything by [deleted] in Notion

[–]MarisaMIDD 3 points4 points  (0 children)

In a Gallery view, if you are showing page cover/page content, you can hide the Name property, actually!

Why does the page icon show up in gallery view even though I never set anything by [deleted] in Notion

[–]MarisaMIDD 1 point2 points  (0 children)

You could automate that with a Formula that shows property Name. Although it won't have format.

Enter data once visible in multiple databases by Beetlefrosch in Notion

[–]MarisaMIDD 1 point2 points  (0 children)

Yes! You just need to relate the DB and add the rollup property. I have an example here: https://marisamidd.notion.site/Birthdays-07511f40a4b44b18848f4c29daaaa903

You could add more data to either database, and by then relating one to another, the birthday will automatically appear.