image_2024-08-20_07-18-40.png
3 KB
***How to multiply numbers in Excel***
To make the simplest multiplication formula in Excel,
type the equals sign (=) in a cell,
then type the first number you want to multiply,
followed by an asterisk, followed by the second number,
and hit the Enter key to calculate the formula.
For example, to multiply 2 by 5, you type this expression in a cell (with no spaces): =2*5
To make the simplest multiplication formula in Excel,
type the equals sign (=) in a cell,
then type the first number you want to multiply,
followed by an asterisk, followed by the second number,
and hit the Enter key to calculate the formula.
For example, to multiply 2 by 5, you type this expression in a cell (with no spaces): =2*5
***How to multiply cells in Excel***
To multiply two cells in Excel, use a multiplication formula like in the above example,
but supply cell references instead of numbers. For example,
to multiply the value in cell A2 by the value in B2, type this expression:
=A2*B2
To multiply multiple cells, include more cell references in the formula,
separated by the multiplication sign. For example:
=A2*B2*C2
To multiply two cells in Excel, use a multiplication formula like in the above example,
but supply cell references instead of numbers. For example,
to multiply the value in cell A2 by the value in B2, type this expression:
=A2*B2
To multiply multiple cells, include more cell references in the formula,
separated by the multiplication sign. For example:
=A2*B2*C2
Forwarded from KHTMFile πΎ
This media is not supported in your browser
VIEW IN TELEGRAM
ααααααααΆα
αα’ααααααααα ααααα·αααααα»αααα’αααα
This media is not supported in your browser
VIEW IN TELEGRAM
ααΌαααααα #Coreldraw 2024 New Versionπ
ππ
#BreakApart Ctrl + K #Combine Ctrl + L ααΈαααα’αΌααΈααα
-ααΆααΆααα»αααα’ααααααααα ααααα-Toathmor
-ααααΆααααΆαα½αααααααα·ααα ααααΆααααααααΈααα
-ααααΆααααΆαα½αααααααα·ααα ααααΆααααααααΈααα
Dim s As Shape, sr As ShapeRange
Set sr = ActiveSelectionRange
Dim d As Variant, str As String
Set d = CreateObject("Scripting.dictionary")
For Each s In sr
If s.Type = cdrTextShape Then
str = s.Text.Story.Text
If d.Exists(str) = True Then
d.Item(str) = d.Item(str) + 1
Else
d.Add str, 1
End If
End If
Next s
str = "Text" & vbTab & vbTab & "Quantity" & vbNewLine
a = d.keys: b = d.items
For i = 0 To d.Count - 1
str = str & a(i) & vbTab & b(i) & "Strip" & vbNewLine
Next
str = str & "Total:" & vbTab & vbTab & d.Count & "Strip" & vbNewLine
Debug.Print str
ActiveDocument.Unit = cdrMillimeter
Dim s1 As Shape
x = sr.FirstShape.LeftX - 100
y = sr.FirstShape.TopY
Set s1 = ActiveLayer.CreateParagraphText(x, y, x + 90, y - 150, str, Font:="Khmer song")
End Sub
π1