Nummerinställningar

Ställa in visningsformat för Numbers och datum

En mycket stark egenskap hos Microsoft Excel är att den tillåter användare att ställa in visningsformat för numeriska värden och datum. Vi vet att numeriska data kan användas för att representera olika värden inklusive decimal-, valuta-, procent-, bråk- eller redovisningsvärden, etc. Alla dessa numeriska värden visas i olika format beroende på vilken typ av information den representerar. På samma sätt finns det många format där ett datum eller en tid kan visas. Aspose.Cells stöder denna funktion och låter utvecklare ställa in valfritt visningsformat för ett nummer eller datum.

Ställa in visningsformat i Microsoft Excel

Så här ställer du in visningsformat i Microsoft Excel:

  1. Högerklicka på valfri cell.
  2. VäljFormat Cells. En dialogruta kommer att visas som används för att ställa in visningsformat av alla slags värden.

I den vänstra sidan av dialogrutan finns det många kategorier av värden somAllmän, siffra, Valuta, Bokföring, Datum, Tid, **Procentsats,**etc. Aspose.Cells stöder alla dessa visningsformat.

Aspose.Cells tillhandahåller en klass,Arbetsbok som representerar en Microsoft Excel-fil. DeArbetsbok klass innehåller enArbetsblad samling som ger åtkomst till varje kalkylblad i Excel-filen. Ett arbetsblad representeras avArbetsblad klass. DeArbetsblad klass ger enCells samling. Varje objekt iCells samlingen representerar ett föremål förCellklass.

Aspose.Cells tillhandahållerGetStyle ochSetStyle metoder förCell klass. Dessa metoder används för att hämta och ställa in en cells formatering. DeStilklass ger några användbara egenskaper för att hantera visningsformat för siffror och datum.

Använda inbyggda nummerformat

Aspose.Cells erbjuder några inbyggda talformat för att konfigurera visningsformaten för siffror och datum. Dessa inbyggda talformat kan användas med hjälp avsiffra egendom avStil objekt. Alla inbyggda talformat ges unika numeriska värden. Utvecklare kan tilldela vilket önskat numeriskt värde som helst tillsiffra egendom avStilobjekt för att tillämpa visningsformatet. Detta tillvägagångssätt är snabbt. De inbyggda talformaten som stöds av Aspose.Cells listas nedan.

Värde Typ Formatera sträng
0 Allmän Allmän
1 Decimal 0
2 Decimal 0.00
3 Decimal # ,##0
4 Decimal # ,##0.00
5 Valuta $#,##0;$-#,##0
6 Valuta $#,##0;[Röd]$-#,##0
7 Valuta $#,##0.00;$-#,##0.00
8 Valuta $#,##0.00;[Röd]$-#,##0.00
9 Procentsats 0%
10 Procentsats 0.00%
11 Vetenskaplig 0,00E+00
12 Fraktion # ?/?
13 Fraktion # /
14 Datum m/d/åå
15 Datum d-mmm-åå
16 Datum d-mmm
17 Datum mmm-åå
18 Tid h:mm AM/PM
19 Tid h:mm:ss AM/PM
20 Tid h:mm
21 Tid h:mm:ss
22 Tid m/d/åå h:mm
37 Valuta # ,##0;-#,##0
38 Valuta # ,##0;[Röd]-#,##0
39 Valuta # ,##0.00;-#,##0.00
40 Valuta # ,##0.00;[Röd]-#,##0.00
41 Bokföring _ * #,##0_ ;_ * “_ ;_ @_
42 Bokföring _ $* #,##0_ ;_ $* “_ ;_ @_
43 Bokföring _ * #,##0.00_ ;_ * “??_ ;_ @_
44 Bokföring _ $* #,##0.00_ ;_ $* “??_ ;_ @_
45 Tid mm:ss
46 Tid h :mm:ss
47 Tid mm:ss.0
48 Vetenskaplig ## 0,0E+00
49 Text @
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Create directory if it is not already present.
bool IsExists = System.IO.Directory.Exists(dataDir);
if (!IsExists)
System.IO.Directory.CreateDirectory(dataDir);
// Instantiating a Workbook object
Workbook workbook = new Workbook();
// Obtaining the reference of first worksheet
Worksheet worksheet = workbook.Worksheets[0];
// Adding the current system date to "A1" cell
worksheet.Cells["A1"].PutValue(DateTime.Now);
// Getting the Style of the A1 Cell
Style style = worksheet.Cells["A1"].GetStyle();
// Setting the display format to number 15 to show date as "d-mmm-yy"
style.Number = 15;
// Applying the style to the A1 cell
worksheet.Cells["A1"].SetStyle(style);
// Adding a numeric value to "A2" cell
worksheet.Cells["A2"].PutValue(20);
// Getting the Style of the A2 Cell
style = worksheet.Cells["A2"].GetStyle();
// Setting the display format to number 9 to show value as percentage
style.Number = 9;
// Applying the style to the A2 cell
worksheet.Cells["A2"].SetStyle(style);
// Adding a numeric value to "A3" cell
worksheet.Cells["A3"].PutValue(2546);
// Getting the Style of the A3 Cell
style = worksheet.Cells["A3"].GetStyle();
// Setting the display format to number 6 to show value as currency
style.Number = 6;
// Applying the style to the A3 cell
worksheet.Cells["A3"].SetStyle(style);
// Saving the Excel file
workbook.Save(dataDir + "book1.out.xls", SaveFormat.Excel97To2003);

Använda anpassade nummerformat

För att definiera din egen anpassade formatsträng för att ställa in visningsformatet, användStil föremålBeställningsfast egendom. Detta tillvägagångssätt är inte lika snabbt som att använda förinställda format men det är mer flexibelt.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Create directory if it is not already present.
bool IsExists = System.IO.Directory.Exists(dataDir);
if (!IsExists)
System.IO.Directory.CreateDirectory(dataDir);
// Instantiating a Workbook object
Workbook workbook = new Workbook();
// Adding a new worksheet to the Excel object
int i = workbook.Worksheets.Add();
// Obtaining the reference of the newly added worksheet by passing its sheet index
Worksheet worksheet = workbook.Worksheets[i];
// Adding the current system date to "A1" cell
worksheet.Cells["A1"].PutValue(DateTime.Now);
// Getting the style of A1 cell
Style style = worksheet.Cells["A1"].GetStyle();
// Setting the custom display format to show date as "d-mmm-yy"
style.Custom = "d-mmm-yy";
// Applying the style to A1 cell
worksheet.Cells["A1"].SetStyle(style);
// Adding a numeric value to "A2" cell
worksheet.Cells["A2"].PutValue(20);
// Getting the style of A2 cell
style = worksheet.Cells["A2"].GetStyle();
// Setting the custom display format to show value as percentage
style.Custom = "0.0%";
// Applying the style to A2 cell
worksheet.Cells["A2"].SetStyle(style);
// Adding a numeric value to "A3" cell
worksheet.Cells["A3"].PutValue(2546);
// Getting the style of A3 cell
style = worksheet.Cells["A3"].GetStyle();
// Setting the custom display format to show value as currency
style.Custom = "£#,##0;[Red]$-#,##0";
// Applying the style to A3 cell
worksheet.Cells["A3"].SetStyle(style);
// Saving the Excel file
workbook.Save(dataDir + "book1.out.xls", SaveFormat.Excel97To2003);

Förhandsämnen