Skip to content

Commit

Permalink
Exclude general sales taxes from F8960 L9b (#1732)
Browse files Browse the repository at this point in the history
Fixes #1732; see issue for details.
  • Loading branch information
grablair authored Apr 12, 2023
1 parent 98fe5aa commit e00a06a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/forms/Y2022/irsForms/F8960.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ export default class F8960 extends F1040Attachment {
// Line 9b Reasonable method: Deductible state tax from Schedule A * Form 8960 Line 8 / 1040 Line 11, Adjusted gross income
l9b = (): number | undefined => {
if (this.f1040.scheduleA.isNeeded()) {
// Sales taxes aren’t deductible in computing net investment income
if (this.f1040.scheduleA.l5aSalesTax()) {
return 0
}
const deducibleStateTaxes = this.f1040.scheduleA.l5e()
const f1040L11 = this.f1040.l11()
if (f1040L11 === 0) {
Expand Down

0 comments on commit e00a06a

Please sign in to comment.