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 community
I am relatively new to Power Bi and have a question regarding checking whether an activity occurred before an other activity (check for maverick buying).
I have following table:
I want to create a calculated field (boolean 1 or 0) per distinct case to check whether record invoice receipt occurs before create purchase order item.
Anyone that has an idea in how to achieve this?
Thanks a lot!
@Anonymous , Create a new column
new column =
var _po = minx(filter(Table, [case] = earlier([case]) && [Activity Name] = "Create Purchase Order Item"),[Event Date])
var _inv = minx(filter(Table, [case] = earlier([case]) && [Activity Name] = "Record Invoice Date"),[Event Date])
return
if(_po > _inv,1,0)
User | Count |
---|---|
16 | |
15 | |
14 | |
12 | |
11 |
User | Count |
---|---|
19 | |
15 | |
14 | |
11 | |
9 |