Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6728941
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:13:47+00:00 2026-05-26T10:13:47+00:00

I want to apply the % (percentage) number format using open XML C# I

  • 0

I want to apply the % (percentage) number format using open XML C#

I have numeric value 3.6 that I want to display that number in excel as `3.6%.

How do I achieve that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T10:13:47+00:00Added an answer on May 26, 2026 at 10:13 am
      WorkbookStylesPart sp = workbookPart.AddNewPart<WorkbookStylesPart>();
    

    Create a stylesheet,

     sp.Stylesheet = new Stylesheet();
    

    Create a numberingformat,

    sp.Stylesheet.NumberingFormats = new NumberingFormats();
    // #.##% is also Excel style index 1
    

    NumberingFormat nf2decimal = new NumberingFormat();
    nf2decimal.NumberFormatId = UInt32Value.FromUInt32(3453);
    nf2decimal.FormatCode = StringValue.FromString("0.0%");
    sp.Stylesheet.NumberingFormat.Append(nf2decimal);
    

    Create a cell format and apply the numbering format id

    cellFormat = new CellFormat();
    cellFormat.FontId = 0;
    cellFormat.FillId = 0;
    cellFormat.BorderId = 0;
    cellFormat.FormatId = 0;
    cellFormat.NumberFormatId = nf2decimal.NumberFormatId;
    cellFormat.ApplyNumberFormat = BooleanValue.FromBoolean(true);
    cellFormat.ApplyFont = true;
    
    //append cell format for cells of header row
    sp.Stylesheet.CellFormats.AppendChild<CellFormat>(cellFormat);
    
    
    //update font count 
    sp.Stylesheet.CellFormats.Count = UInt32Value.FromUInt32((uint)sp.Stylesheet.CellFormats.ChildElements.Count);
    
    
    //save the changes to the style sheet part   
    sp.Stylesheet.Save();
    

    and when you append the value to the cell have the following center code hereonversion and apply the style index
    in my case i had three style index hence the 3 one was my percentage style index i.e 2 since the indexes start from 0

    string val = Convert.ToString(Convert.ToDecimal(value)/100);
    Cell cell = new Cell();
    cell.DataType = new EnumValue<CellValues>(CellValues.Number);
    cell.CellValue = new CellValue(val);
    cell.StyleIndex = 2;
    row.Append(cell);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to apply an XSLT Stylesheet to an XML Document using C# and
I want to apply NTFS-Search to our project. Our project have to find the
I want to apply some CSS to text that I can't get marked up
I have a DIV to which I want to apply a style currently prescribed
I want apply palette to images which are opened. Currently i am using an
I want to apply a XSL style sheet that delete duplicate nodes in my
I want to apply a format (align text, format for the currency 0000.00) to
I want to apply a rewrite condition, so that only *.php files are affected:
I want to apply a filter to an advantage table using multiple values for
i have this elements <div class="a b"></div> <div class="b"></div> <div class="a"></div> I want apply

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.