- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Column to Find days between dates
Hello, I am looking at traffic on a webpage and for a each page, i have a different publish date. I would like to see the number of days since the publish date for each pageview in a new column.
I tried this but i cant seem to get it to work:
if([Date]>=DATE(2019,6,7) && ([Date]<DATE(2019,6,21))DATE(2019,6,7), DATE(2019,6,21))
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
That is the PowerQuery editor which uses an entirely different language, called M. Your formula will look something like this.
= if [Date] >= Date.FromText("6/7/2019") and [Date] < Date.FromText("6/21/2019") then Date.FromText("6/7/2019") else Date.FromText("6/21/2019")
I would load it to PowerBI and do it in DAX rather than adding the column in the query editor.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Two things, from a dax perspective you are missing a comma. The DAX below is fixed. Also, is [Date] a column or measure? Do you want your output to be a calculated column or measure? This should help direct a better answer should the missing comma not be the problem.
Test = IF( [Date] >=DATE(2019,6,7) && ( [Date]<DATE(2019,6,21)), DATE(2019,6,7), DATE(2019,6,21))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @MitchM,
I am looking to produce a calculated column.
I tried your code but i recivere a "Token Literal Expected" Error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
That is the PowerQuery editor which uses an entirely different language, called M. Your formula will look something like this.
= if [Date] >= Date.FromText("6/7/2019") and [Date] < Date.FromText("6/21/2019") then Date.FromText("6/7/2019") else Date.FromText("6/21/2019")
I would load it to PowerBI and do it in DAX rather than adding the column in the query editor.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello @Anonymous ,
Can you give us a screen shot of the table layout? If you have two columns of dates in a single table [Publish Date] and [Traffic Date] you can just do [Traffic Date] - [Publish Date] in a new column to get the number of days.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes that would work, but i suppose what i am trying to do is match a view date to a publish date. in pseudo code;
If the "Date" is >= June 7 && < June 21, then the"publish date"is June 7th else, publish date is June 21

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
05-06-2024 04:58 AM | |||
05-19-2024 09:58 AM | |||
12-01-2023 11:47 AM | |||
04-02-2024 08:30 AM | |||
12-13-2023 02:09 AM |
User | Count |
---|---|
141 | |
112 | |
83 | |
63 | |
47 |