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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Musketeers
Regular Visitor

if else condition with between operator

Hi,

I am using M language and adding a new column in table.

I need to write if condition in this line.

I am writing if condition like this:

if [Month] between 2 and 4 then "yes" else "no"

 

Now here I am getting error for between key word. 

Please tell me what is the error and what is the correct way of writng this condition.

 

 

Thanks

Rajneesh

 

1 ACCEPTED SOLUTION
donsvensen
Skilled Sharer
Skilled Sharer

Hi

 

You can do this

 

if [Month] >= 2 and [Month] <= 4 then "yes" else "no"

 

 

 

/Erik

View solution in original post

7 REPLIES 7
JPBTech19
Frequent Visitor

The following should work:

    IF
    (
        AND                                                   Operational condition
            (
                [Month]>= 2, [Month]<=4        Conditional statement being evaluated
            ),

            "YES",                                             Result is condition is TRUE
            "NO"                                              Result is condition is FALSE
    )

 

Written another way...

 

    IF(AND([Month]>= 2, [Month]<=4),"YES","NO")

donsvensen
Skilled Sharer
Skilled Sharer

Hi

 

You can do this

 

if [Month] >= 2 and [Month] <= 4 then "yes" else "no"

 

 

 

/Erik

Hi Erik,

Thanks for your reply.

Yes you are right. This is also a another way to do this.

But wanted to know if we can write this with Between Keyword as I was trying to write.

 

 

Any way I will use the way you have suggested. 

 

 

Thanks

Rajneesh

@Musketeers

 

In Power Query, there's no "between" keyword, you can only use operators to achieve this kind of logic as @donsvensen suggested.  

See: https://msdn.microsoft.com/en-us/library/mt186365.aspx

 

Regards,

 

Hi Simon, Thanks for your suggestion. Yes that way it is working. Thanks all for your time and suggestions.

hello, it still works so I've tried and it does not work for me the only thing is that I'm using dates and looking for a date within this range, for example:

Start date: 01-01-18
Final Date: 08-01-18
date to search: 05-01-17
if the date is within the range that returns me a value of $ .100.
thanks for your comments. regards osiel

hello, it still works so I've tried and it does not work for me the only thing is that I'm using dates and looking for a date within this range, for example:

Start date: 01-01-18
Final Date: 08-01-18
date to search: 05-01-17
if the date is within the range that returns me a value of $ .100.
thanks for your comments. regards osiel

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.