March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello: I'm new to Power BI and need a little help. I have searched for what I'm trying to accomplish but haven't quite found a suitable solution.
I have a calculated table in Power BI. I'm trying to create a New Column that does the following: If the difference between pickup and next pickup is >90 then previous row value + 1, or else previous row value.
New Column = IF('TABLE_All Data Combined'[Days Between Pickup & NextPickup]> 90,"Prev Row Value + 1","Prev Row Value")
Below is an example of what I would the results to look like. Any help would be greatly appreciated
Solved! Go to Solution.
Hi,
Thank you for your message, and please try something like below.
Expected result newe column CC =
VAR _startrow =
MINX( FILTER( Data, Data[Cust ID] = EARLIER( Data[Cust ID])), Data[PickUp Date] )
VAR _addcolumn =
ADDCOLUMNS (
Data,
"@condition",
SWITCH (
TRUE (),
Data[PickUp Date] = _startrow, 1,
DATEDIFF ( Data[Next Pickup], Data[PickUp Date], DAY ) > 90, 1,
0
)
)
RETURN
SUMX (
FILTER (
_addcolumn,
Data[PickUp Date] <= EARLIER ( Data[PickUp Date] )
&& Data[Cust ID] = EARLIER ( Data[Cust ID] )
),
[@condition]
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Jihwan!!! Thank you so much for all your help, this works perfectly!!! I thought I needed to change the VAR startrow to Minx(Filter, but was playing around with it for a while and couldn't figure it out. Your help is greatly appreciated!
Hi,
I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.
Expected result newe column CC =
VAR _startrow =
MIN ( Data[PickUp Date] )
VAR _addcolumn =
ADDCOLUMNS (
Data,
"@condition",
SWITCH (
TRUE (),
Data[PickUp Date] = _startrow, 1,
DATEDIFF ( Data[Next Pickup], Data[PickUp Date], DAY ) > 90, 1,
0
)
)
RETURN
SUMX (
FILTER (
_addcolumn,
Data[PickUp Date] <= EARLIER ( Data[PickUp Date] )
&& Data[Cust ID] = EARLIER ( Data[Cust ID] )
),
[@condition]
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi Jihwan - THANK YOU so much!!!! This almost works! However, I failed to mention that this table has many customers, so I need it to start at 1 for min pickup date for each customer (hope below in "Expected Cust Grouping" column helps demonstate what I'm looking to do)
Hi,
Thank you for your message, and please try something like below.
Expected result newe column CC =
VAR _startrow =
MINX( FILTER( Data, Data[Cust ID] = EARLIER( Data[Cust ID])), Data[PickUp Date] )
VAR _addcolumn =
ADDCOLUMNS (
Data,
"@condition",
SWITCH (
TRUE (),
Data[PickUp Date] = _startrow, 1,
DATEDIFF ( Data[Next Pickup], Data[PickUp Date], DAY ) > 90, 1,
0
)
)
RETURN
SUMX (
FILTER (
_addcolumn,
Data[PickUp Date] <= EARLIER ( Data[PickUp Date] )
&& Data[Cust ID] = EARLIER ( Data[Cust ID] )
),
[@condition]
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Jihwan!!! Thank you so much for all your help, this works perfectly!!! I thought I needed to change the VAR startrow to Minx(Filter, but was playing around with it for a while and couldn't figure it out. Your help is greatly appreciated!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |