About 16,700,000 results
Open links in new tab
  1. c# - What is ToString ("N0") format? - Stack Overflow

    Apr 25, 2013 · 1 It is a sort of format specifier for formatting numeric results. There are additional specifiers on the link. What N does is that it separates numbers into thousand decimal places …

  2. c# - numeric format strings #,#0.00 vs #,0.00 - Stack Overflow

    Oct 23, 2020 · 4 Probably because Microsoft uses the same format specifier in their documentation, including the page you linked. It's not too hard to figure out why; #,##0.00 more clearly states the …

  3. Difference between ToString ("N2") and ToString ("0.00")

    Dec 22, 2010 · From Standard Numeric Format Strings The number is converted to a string of the form "-d,ddd,ddd.ddd…", where '-' indicates a negative number symbol if required, 'd' indicates a digit (0 …

  4. What are .NumberFormat Options In Excel VBA? - Stack Overflow

    Can you please let me know what are the .NumberFormat format options in Excel VBA? As you are fully aware Excel 2010 supports the following types: I know that we can set for example Text type as: .

  5. PostgreSQL: how to resolve "numeric field overflow" problem

    Feb 14, 2017 · It looks like you have your year and week_of_month columns defined as numeric(17,17), which means 17 digits, 17 of which are behind the decimal point. So the value has to be between 0 …

  6. How to convert date in SAS to YYYYMMDD number format

    Nov 4, 2016 · In test_1 table, the my_date field is a "DATE9." format. I would like to convert it to a pure numeric format (number length 8) which is of the form YYYYMMDD. I would also like to do this in a …

  7. sql - How do I convert a number to a numeric, comma-separated …

    Is there an easy way to convert a number (in my case an integer) to a comma separated nvarchar string? For instance, if I had an int value of 1000000 stored in a field, how can I convert it to an

  8. How to convert a numeric value into a Date value - Stack Overflow

    Nov 28, 2017 · So, I have a data.frame with a column called Date.birth, but I have these values in a numeric format: Date.birth 43067 43060 Probably is problem format. But I need in a Date format like …

  9. as.numeric with comma decimal separators? - Stack Overflow

    Mar 6, 2013 · Not a duplicate. Thousands separators and decimal separators are very different. As.numeric is also for data conversion, not data reading.

  10. SAS: convert date to numeric - Stack Overflow

    Apr 5, 2017 · 1 You can just wrap an input around that format: data test; date = 20668; full_date = input(put(date,yymmddn8.),best12.); run; The put is converting the date to character in the format as …