Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
AUDISU
Resolver III
Resolver III

Filter Reversal Entries - Xero

Hi,

 

I load data to PowerBi from Xero and I use JournalsAccrual end point. It shows me both live and reversal entries.

Have any idea how to filter(remove) reversal entries?

 

Thank you.

1 REPLY 1
Vijay_A_Verma
Super User
Super User

Let's assume column name is Amount and reversal entries are shown with minus sign. Then you can insert following step in formula bar to filter out (remove) reversal entries where #"Changed Type" should be replaced with your previous step

= Table.SelectRows(#"Changed Type", each [Amount] < 0)

 See the working here - Open a blank query - Home - Advanced Editor - Remove everything from there and paste the below code to test 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUTI2UYrViVYyAjKNjMFMkKiuEYJpAVega4pQawRnmpohKUAYYWigFBsLAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Customer ID" = _t, Amount = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Customer ID", Int64.Type}, {"Amount", Int64.Type}}),
    #"Filtered Rows" = Table.SelectRows(#"Changed Type", each [Amount] < 0)
in
    #"Filtered Rows"

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.