Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello everyone,
I would like to create a new column in powerBI that for each row (transaction) associates me the value 0 or 1 depending on:
1: if this transaction is the last transaction (to date) of the same type (that means same shopper email and amount) and it has as a response: REFUSED
0 otherwise
Format in Power Bi/
Creation Date: Date/Time
Amount = Decimal number
Solved! Go to Solution.
Try this calculated column:
New Column =
VAR vAmount = Table1[Amount]
VAR vEmail = Table1[Shopper Email]
VAR vTable =
FILTER ( Table1, Table1[Amount] = vAmount && Table1[Shopper Email] = vEmail )
VAR vMaxDate =
MAXX ( vTable, Table1[Creation Date] )
VAR vResult =
IF (
Table1[Creation Date] = vMaxDate
&& Table1[Acquirer Response] = "REFUSED",
1,
0
)
RETURN
vResult
Proud to be a Super User!
Thank you very much for you help 🙂
Try this calculated column:
New Column =
VAR vAmount = Table1[Amount]
VAR vEmail = Table1[Shopper Email]
VAR vTable =
FILTER ( Table1, Table1[Amount] = vAmount && Table1[Shopper Email] = vEmail )
VAR vMaxDate =
MAXX ( vTable, Table1[Creation Date] )
VAR vResult =
IF (
Table1[Creation Date] = vMaxDate
&& Table1[Acquirer Response] = "REFUSED",
1,
0
)
RETURN
vResult
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
81 | |
52 | |
39 | |
35 |
User | Count |
---|---|
95 | |
79 | |
52 | |
49 | |
47 |