Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
H_insight
Helper V
Helper V

Help with M Code

Hi All,

 

I had a sample file (attached) that contains a Data table, which consist of 17 rows and 2 columns. I would like to add an M code (Not Dax) in power query to add a conditional colmun where:

1- Date column must be in the last 3 months; And

2- Active column = Y; And

3- User Column = N

 

Please see below screenshot of what to expect in "New Column".

HeshamK_0-1636389225912.png

Sample File

Many thanks

H

2 ACCEPTED SOLUTIONS
Greg_Deckler
Super User
Super User

@H_insight Try:

if [Date] > Date.AddMonths(Date.From(DateTime.LocalNow()),-3) and [Active column] = "Y" and [User Column] = "N" then 1 else 0

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

BA_Pete
Super User
Super User

Hi @H_insight ,

 

Try this:

 

if [Date] >= Date.AddMonths(Date.From(DateTime.LocalNow()), -3)
  and [Active / Not] = "Y"
  and [User/Consumer] = "N"
then 1
else 0

 

This uses three rolling months i.e. today it will give you 2021-08-08 to 2021-11-08.

 

If you want it to evaluate against the last three complete months i.e. not including current month, then it would be:

 

if Date.IsInPreviousNMonths([Date], 3)
  and [Active / Not] = "Y"
  and [User/Consumer] = "N"
then 1
else 0

 

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

5 REPLIES 5
BA_Pete
Super User
Super User

Hi @H_insight ,

 

Try this:

 

if [Date] >= Date.AddMonths(Date.From(DateTime.LocalNow()), -3)
  and [Active / Not] = "Y"
  and [User/Consumer] = "N"
then 1
else 0

 

This uses three rolling months i.e. today it will give you 2021-08-08 to 2021-11-08.

 

If you want it to evaluate against the last three complete months i.e. not including current month, then it would be:

 

if Date.IsInPreviousNMonths([Date], 3)
  and [Active / Not] = "Y"
  and [User/Consumer] = "N"
then 1
else 0

 

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Thank you @BA_Pete for the prompt response. This is exactly what I was looking for.

@H_insight ,

 

Glad to hear it.

Just out of interest, did you use the rolling three months or the three complete months?

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




@BA_Pete I Have used the rolling 3 months.

Greg_Deckler
Super User
Super User

@H_insight Try:

if [Date] > Date.AddMonths(Date.From(DateTime.LocalNow()),-3) and [Active column] = "Y" and [User Column] = "N" then 1 else 0

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors