Skip to main content

Can I take the home office deduction?

Employees working from home can't take the home office deduction, even if you've been asked to work from home due to COVID-19. This has been in place since 2018, when the Tax Cuts and Jobs Act was signed into law. Prior to that, employees who worked from home at the convenience of their employer were allowed to deduct home office expenses under the 2% rule.

If you're self-employed, however, housing-related expenses such as mortgage interest, rent, utilities, repairs, and depreciation for the portion of your home or rental that you use to run your business are allowable expenses under the home office deduction.

You may be able to claim the home office deduction if your office is:

When you enter your home office information in TurboTax, we'll ask some questions to determine if you can claim the deduction and how much the deduction is worth. You’ll need information like the square footage of your residence and the rooms you worked in.

Comments

  1. 别轻易把家里当Office减税,卖房子的时候麻烦不说,多卖的价钱要缴税反倒不划算

    ReplyDelete

  2. Are full-time W-2 employees working from home eligible?
    They are not. In 2017, the Tax Cuts and Jobs Act suspended tax write-offs
    for home office deductions through 2025. That means if you are an employee
    who gets a W-2 from an employer, you are not eligible for the home office
    deduction -- even if you're working from home.

    http://www.cnet.com/personal-finance/the-home-office-tax-deduction-the-reason-you-cant-use-it-even-after-working-from-home-for-a-year/

    ReplyDelete

Post a Comment

https://gengwg.blogspot.com/

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...