@@amyleung7903 Hi Amy, 多謝你嘅好評,協助轉發俾有需要嘅朋友,就係對本平台嘅義工最大嘅支持🙏😀
@brightlightdun2 ай бұрын
快快快靚靚靚正正正😂
@KKLeung2 ай бұрын
@@brightlightdun 多謝收看
@azalea7322 ай бұрын
Thank you for the session! Question about slicer filter: can I use multi columns to perform the slicer filter function? thanks.
@KKLeung2 ай бұрын
@@azalea732 Thanks for watching. Yes, you can use multiple slicers to analyse the data set.
@kinfaichap28382 ай бұрын
謝謝
@KKLeung2 ай бұрын
@@kinfaichap2838 多謝收看
@stevenlylaw76672 ай бұрын
Hello, KK, are these functions only available in 360?
@KKLeung2 ай бұрын
@@stevenlylaw7667 only trick #1
@Teen1-vi1rj2 ай бұрын
Thank you very much
@wiman8522 ай бұрын
老師,您好!有否方法防止已設定cell的輸入條件,被paste by “123”模式已破壞? 谢谢!
@KKLeung2 ай бұрын
Hi Wi Man, 你所述情況, 應該是要用vba code先可以做到這個要求. 請按下嚟步驟 1 選擇需要控制worksheet名嘅位置, mouse按右鍵 2 選擇View Code 3 將下面 VBA program copy 到VBA editor 4 更改需要控制嘅範圍, 現時例子係A1:B10 5 在左上角按Excel icon, 返回worksheet版面. 6 嘗試設定功能 7 最後File 必須Save as Excel Macro-enabled Workbook Private Sub Worksheet_Change(ByVal Target As Range) Dim cell As Range Application.EnableEvents = False If Not Intersect(Target, Me.Range("A1:B10")) Is Nothing Then For Each cell In Target If Not IsEmpty(cell) Then If IsNumeric(cell.Value) Then MsgBox "Only Text input is allowed" cell.ClearContents End If End If Next cell End If Application.EnableEvents = True End Sub
@wiman8522 ай бұрын
明白了!感谢老師,解答!🌷🌷🌷
@poonsteve80192 ай бұрын
How to set protect an input area once user input data into it. Or some rules that input data is satisfied then input area protection is enforced.
@KKLeung2 ай бұрын
Thanks for watching. Very likely, you need to have VBA CODE to meet the requirements. KK
@poonsteve80192 ай бұрын
@@KKLeung I found my case doesn’t have VBA. I input a specified area and save it once. Then the input area can’t be overriding that area. Because it is not my file and I am still checking it. Anyway thanks for your reply.
@KKLeung2 ай бұрын
@@poonsteve8019 what is the extension of the file? Is it a xlsm?
@poonsteve80192 ай бұрын
@@KKLeung yes
@KKLeung2 ай бұрын
@@poonsteve8019 the file has VBA program to lock the cells after you input and saved.