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
JuanviWebbeds
Helper II
Helper II

Calculated column filtered by two columns value

Hi,

I have this calculated table, it has rows with values, colums with date of creation truncated to weeks and a check in value.

I need another colum with the value of the last week (creation week - 7 days) and check in date last year.

I´ve tryed several solution with out acurrate result, what will be the best aproach?

Thanks!

 
 

2020-03-19 12_01_59-Window.png

1 ACCEPTED SOLUTION

Try :

New Column = sumx(filter(Table,[Creation] = (earlier([creation]) - 7) && [Check in] = (earlier([check in]) - 365)),[room nights])

View solution in original post

5 REPLIES 5
amitchandak
Super User
Super User

Did not get it completely

New column = [creation date]-7

 

The other I did not get

Hi

Thanks frist of all!

New Colum = sum(room nights) where Creation = creation - 7 and Check in = check in - 365

In SQL it´s easy 🙂

Cheers

 

Try :

New Column = sumx(filter(Table,[Creation] = (earlier([creation]) - 7) && [Check in] = (earlier([check in]) - 365)),[room nights])

Greg_Deckler
Super User
Super User

Not 100% on what you are asking with that last one. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

 

If you want the value of the last week you can do this:

 

Column =
  VAR __Current = [CheckIn]
  VAR __CurrentMinus7Days = (__CurrentWeek - 7) * 1.
RETURN
  MAXX(FILTER('Table',[Checkin] = __CurrentMinus7Days),[RoomNights])
  

@ 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...

Thanks for your help, but this does not work.

I just wanted to put the same value of last year creation and last year check in, trys to use your solution with out luck:

LastYearCreationsOverlastYearCheckin =
VAR __Creation = [Creation]
VAR __CreationMinus365Days = ( __Creation - 365) * 1
VAR __CheckIn = RoomNights[CheckIn]
VAR __CheckInMinus365Days = ( __CheckIn - 365) * 1
RETURN
MAXX(FILTER(RoomNights;(RoomNights[Creation] = __CreationMinus365Days && RoomNights[CheckIn] = __CheckInMinus365Days));[RoomNights])
I want the same value of creation - 365 day and the same value of checkin - 365 day
Validating this data against SQL does not work.
Can you please help me and thanks!!!!

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.