Our database tracks blog content generation for clients. Each line item includes a multi-select column for author and a multi-select column for editor. I would like to assign a dollar amount to each author name and each editor name so that I can calculate total cost for each blog post. Hopefully then I can pull a list of blog posts completed within a certain time frame and get total costs for that.
Connect
1 Answer
Create two new Notion formula properties in your database and use something like this.
Formula for Authors
if(prop("Author") == "John", 250, if(prop("Author") == "Charles", 300, 0))
John makes $250 and Charles $300.
Formula for Editors
if(prop("Editor") == "James", 220, if(prop("Editor") == "Rick", 430, 0))
James makes $220 and Rick $430.
The formulas are checking two names, you will need to extend them with more ifs to match your Authors and Editors number.
Related questions
- How can I calculate minutes to add total hours (or minutes) in a formula to add totals?
- Is it possible to return the name of every day within a time range via formula?
- Formula to calculate the amount of money spent last 3 months
- Formula to calculate a person's age given we have their date of birth?
- How to calculate test results with a nested if-statement?
Without Answer
-
- 38
- 0
- 3 days ago
-
- 84
- 0
- Aug 12
-
- 121
- 0
- Aug 7
-
- 218
- 0
- Jul 17
-
- 1278
- 0
- Apr 14
-
- 850
- 0
- Apr 12
-
- 1377
- 0
- Apr 11
-
- 796
- 0
- Apr 10
- see all
Recent Activities
renvik04 asked 3 days ago
How Can I Use Notion to Organize a Busy Work Workf…QMuzikDirektor asked Aug 12
Search Doesn't Seem To Worknotionbackups answered May 22
How to print or export note or page as pdf with fi…
...

