KHTMFile πŸ’Ύ
1.27K subscribers
1.18K photos
341 videos
386 files
465 links
Subscribe PSD AI CDR
Download Telegram
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
***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
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
-αž—αŸ’αž‡αžΆαž”αŸ‹αž‡αžΆαž˜αž½αž™αžαž˜αŸ’αž›αŸƒαž–αž·αžŸαŸαžŸ αž‘αŸ†αž“αžΆαž€αŸ‹αž‘αŸ†αž“αž„αž‘αžΈαž“αŸαŸ‡
❀1
❀2
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
πŸ‘1