求ecel任意幾個個數字組合排列與一組排列組

2021-03-03 21:56:09 字數 2511 閱讀 8815

1樓:慶年工坊

function 朱科

dao技

版權(zhu as range, num as integer)r = zhu.rows.count

for c1 = 1 to r

for c2 = 1 to r

if c2 <> c1 then

for c3 = 1 to r

if c3 <> c1 and c3 <> c2 thenfor c4 = 1 to r

if c4 <> c1 and c4 <> c2 and c4 <> c3 then

rr = rr + 1

朱科技 = zhu(c1, 1) & "," & zhu(c2, 1) & "," & zhu(c3, 1) & "," & zhu(c4, 1)

if rr = num then exit functionend if

next

end if

next

end if

next

next

end function

excel中4個數字中3個數字任意排列組合公式是什麼?

2樓:沈一民

1234中3個數字任意排列組合共4*3*2*1=24個組合

a2=int((row(a1)-1)/6)+1

b2=**all(if(row($a$1:$a$4)<>a2,row($a$1:$a$4),4^8),roundup((mod(row(a6),6)+1)/2,0))

c2=**all(if((row($a$1:$a$4)<>a2)*(row($a$1:$a$4)<>b2),row($a$1:$a$4),4^8),2-mod(row(a1),2))

d2=a2&b2&c2

b2、c2兩個是陣列公式,公式輸完後,游標放在公專式編輯欄同時按下ctrl+shift+回車屬鍵,使陣列公式生效。

四個公式向下複製24行。

黃色區域代表你要排列組合的字元或數字(你自己根據需要修改)

abc三列公式同上,d2=index($h$2:$k$2,a2)向下向右複製到綠色區域

g2=d2&e2&f2向下複製。

excel四位數字的排列組合

3樓:沈一民

我不懂車牌號碼是幾位數,與字母是怎樣排列的。如果你能告訴我這些,我可以給你做出來。

4樓:山桑弓

你想要一個

bai這樣的隨機值,還du是所有的都羅列出來。

如果zhi想都列出來,任意

dao單元格中輸入

=text(**all(if(iserr(find(4,row($1:$9999)))*iseven(right(row($1:$9999)))*(right(row($1:

$9999))<>"0"),row($1:$9999)),row(a1)),"0000")

同時內按下ctrl+shift+回車,輸容入陣列公式,下拉。

5樓:匿名使用者

我用抄vba將結果做襲

出來給你,見

附件。sub macro1()

x = 1

for i = 0 to 9

if i <> 4 and i <> 7 thenfor j = 0 to 9

if j <> 4 and j <> 7 thenfor k = 0 to 9

if k <> 4 and k <> 7 thenfor l = 2 to 8 step 2if l <> 4 then

cells(x, 1) = "'" & i & j & k & lx = x + 1

end if

next

end if

next

end if

next

end if

next

end sub

如何利用excel進行排列組合?17個數字取3個數為一組排列

6樓:匿名使用者

設資料在a列,

b1輸入:

=offset($a$1,int((row(a1)-1)/(17*17)),)

c1輸入:

=offset($a$1,int((row(a1)-1)/17),)d1輸入:

=offset($a$1,mod(row(a1)-1,17),)同時下拉回三個公式答

求excel三位數字排列組合

7樓:姓王的

假定三位數在a1單元格

大小大的判斷公式:

=if(and(left(b1,1)>mid(b1,2,1),mid(b1,2,1)mid(b1,2,1),mid(b1,2,1)>=right(b1,1)),"√","")

兩者同時判斷(滿足任一條件即可):=if(left(b1,1)>mid(b1,2,1),"√","")

滿足條件打上對號

ecel中統計條件1條件2中任意一項滿足的個數

count a 2 a 11 sumproduct b 2 b 11 c 2 c 11 sum if b2 b11 y c2 c11 y 1 陣列公式,ctrl shift 回車,帶出大括號結束輸入 sumproduct b2 b11 y c2 c11 y sumproduct b2 b11 y c...

它表示任意幾個字元,萬用字元()代表任意多個字元,萬用字元代表任意一個字元。

對,可以表示0 n個字元,如果是?則表示1個字元,表示3個字元 對,0到n個任意字元 excel中通用符 表示任意多個字元 表示任意單個字元 是怎麼使用的?是只能在sumfi中使用嗎?excel中的萬用字元可以在任意公式中使用,比如 vlookup 張 三 a c,2,0 sumifs c c,a ...

程式設計求任意可逆矩陣的逆矩陣

剛好在做,就分享一下 有一些過程有其他功能暫時沒有修改 int inv m double y n double x n int n 逆矩陣 n階方陣x的逆矩陣為y else return 0 int adjoit double y n double x n int n 伴隨矩陣 n階方陣x的伴隨矩陣...