How To Get The Sum Of DataGridView Column Values Using C#

แชร์
ฝัง

ความคิดเห็น • 21

  • @mohamedsaid1833
    @mohamedsaid1833 5 หลายเดือนก่อน

    Excellent

    • @RashiCode
      @RashiCode  4 หลายเดือนก่อน

      🖤🖤

  • @hoshandinuk9855
    @hoshandinuk9855 ปีที่แล้ว +1

    Thank You @RashiCode

  • @mohammedxarajyani6879
    @mohammedxarajyani6879 2 ปีที่แล้ว

    thank you my bro

  • @sunrise_dev
    @sunrise_dev 4 ปีที่แล้ว +1

    Nice sir

  • @idndotexe8441
    @idndotexe8441 2 ปีที่แล้ว

    Thanks man 👍👍👍👍

  • @LongTran-bv8uq
    @LongTran-bv8uq 3 ปีที่แล้ว

    thanks

  • @darachanc4641
    @darachanc4641 3 ปีที่แล้ว

    If we can get sum amount of Datagridview with condition? eg: sum of amount that seller'name = john.

    • @RashiCode
      @RashiCode  3 ปีที่แล้ว

      yes you can...:)

  • @nikkamay
    @nikkamay 2 ปีที่แล้ว

    how to get the sum by date

  • @theboss4006
    @theboss4006 3 ปีที่แล้ว

    I get an exception Unhandled saying system.nullreferenceException

    • @RashiCode
      @RashiCode  3 ปีที่แล้ว +3

      go to datagridview properties find
      AllowUserToAddRows and trun it false

    • @NHGeneral
      @NHGeneral 3 ปีที่แล้ว

      @@RashiCode it works, thank you, but I still didn't understand why, please elaborate, because may be in some cases we still need to allow user to add rows

    • @stringers4441
      @stringers4441 ปีที่แล้ว

      Thank you bro same problem here

  • @sgupta029
    @sgupta029 4 ปีที่แล้ว

    HOW TO SET 2 DECIMAL AFTER POINT (EX. 500.00 NOT 500.0000)

    • @RashiCode
      @RashiCode  4 ปีที่แล้ว +1

      in database set data type decimal(10,2) this set 2 decimal after point

    • @savagelurd6314
      @savagelurd6314 ปีที่แล้ว

      convert your result to string when you output and use eg x.ToString("n");

  • @abraofrancisco7198
    @abraofrancisco7198 3 ปีที่แล้ว

    Hi Can anyone assist me please, how can I return 0 from that queries?
    am getting error when on data specific date entry with that PaymentMechanism was not done.
    How to add zero
    txtTotalMULTICAIXAAmount.Text = "";
    string PaymentMechanism = "CD";
    string status = "A";
    SqlConnection sqlc = new SqlConnection(ConString);
    sqlc.Open();
    SqlCommand cmd = new SqlCommand("Select SUM(PayInVisaAmount)+SUM(ZeroAmount) from TBL_PAYMENTS where TransactionDate = '" + systemEntryDate.Text + "' and Status = '" + status + "'and SourceID='" + txtUserName.Text + "'and PaymentMechanism = '" + PaymentMechanism + "'", sqlc);
    decimal i = Convert.ToDecimal(cmd.ExecuteScalar());
    sqlc.Close();
    totalCash = 0+i;
    txtTotalMULTICAIXAAmount.Text = i.ToString();
    TOTAL_EM_TPA = i;
    txtTotalMULTICAIXAAmount.Text = string.Format("{0:C}", Convert.ToDouble(txtTotalMULTICAIXAAmount.Text));