DZone
Open Source Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Open Source Zone > How to Color Excel File Using Mulesoft

How to Color Excel File Using Mulesoft

This article covers the step-by-step guide to color excel files using Mulesoft.

Pankaj Badi user avatar by
Pankaj Badi
·
Jul. 31, 21 · Open Source Zone · Tutorial
Like (4)
Save
Tweet
2.57K Views

Join the DZone community and get the full member experience.

Join For Free

Use-Case :

1. Payroll System: There are two payroll systems for different regions and I need to aggregate the data in the excel file in the particular folder in the SFTP location.

2. I need to color using MuleSoft there is a scenario in which the excel file should be colored according to some conditions. Suppose, Termination Date and Effective Date in that excel for a particular condition I have to fill the color in Excel file.

3.  For this, I used Java Apache POI Framework and Invoke static connector.

Apache POI

Configuration of invoking static.

Apcahe POI static invocation

4. Add the below dependency in your pom.xml.

XML
 
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi</artifactId>
    <version>3.17</version>
</dependency>
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml</artifactId>
    <version>3.17</version>
</dependency>

5. There are some conditions for the particular color I need to fill in the excel file for the particular column like Termination Date and Effective Date. Suppose if TD and ED match then yellow color, if TD and ED are different then green color and TD is greater than ED then blue color in the excel for the folder which is present in SFTP location.

Color excel sheets

6.  For the particular condition I am writing the code in java.

Java coloring excel sheets

Conclusion:  

By using Java Apache POI we can able to do coloring in excel using MuleSoft.

MuleSoft

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Major PostgreSQL Features You Should Know About
  • 3 Reasons Why You Should Centralize Developer Tools, Processes, and People
  • Caching Across Layers in Software Architecture
  • Internal Developer Platform in Plain English

Comments

Open Source Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo