Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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!
Solved! Go to Solution.
Try :
New Column = sumx(filter(Table,[Creation] = (earlier([creation]) - 7) && [Check in] = (earlier([check in]) - 365)),[room nights])
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
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])
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:
User | Count |
---|---|
84 | |
75 | |
73 | |
42 | |
36 |
User | Count |
---|---|
114 | |
56 | |
52 | |
43 | |
42 |